Skills
MCP
Plugins
Subagents
.fyi
.fyi
Search…
⌘K
…
/
berriai
/
litellm-skills
home
/
skills
/
berriai
/
litellm-skills
berriai/litellm-skills
21 skills
View on GitHub
$
npx skills add berriai/litellm-skills
Skill
Installs
add-agent
Create a new AI agent on a live LiteLLM proxy. Asks for agent name, the underlying model, and optional MCP server access, then calls POST /v1/agents.
—
add-key
Generate a new API key on a live LiteLLM proxy. Asks for alias, scope (user/team), budget, models, and expiry, then calls POST /key/generate. Use when the user wants to create, generate, or provision
—
add-mcp
Register a new MCP server on a live LiteLLM proxy. Asks for the server name, transport type, URL, and optional auth, then calls POST /v1/mcp/server.
—
add-model
Add a new model to a live LiteLLM proxy. Walks the user through picking a provider, entering the deployment name and credentials, calls POST /model/new, then test-calls the model to confirm it routes
—
add-org
Create a new organization on a live LiteLLM proxy. Asks for org name, budget, and allowed models, then calls POST /organization/new.
—
add-team
Create a new team on a live LiteLLM proxy. Asks for team name, budget, and allowed models, then calls POST /team/new and shows the result. Use when the user wants to create a new team, set up team bud
—
add-user
Create a new user on a live LiteLLM proxy. Asks for email, role, and optional budget/model limits, then calls POST /user/new and shows the result.
—
delete-agent
Delete an AI agent from a live LiteLLM proxy. Ask for the agent_id and confirm before calling DELETE /v1/agents/{agent_id}.
—
delete-key
Delete one or more API keys from a live LiteLLM proxy. Ask for the key(s) and confirm before calling POST /key/delete.
—
delete-mcp
Delete an MCP server from a live LiteLLM proxy. Ask for the server_id and confirm before calling DELETE /v1/mcp/server/{server_id}.
—
delete-model
Delete a model from a live LiteLLM proxy. Asks for the model name or model_id and confirms before calling POST /model/delete. Use when the user wants to remove, delete, or unregister a model from a Li
—
delete-org
Delete one or more organizations from a live LiteLLM proxy. Ask for the organization_id(s) and confirm before calling DELETE /organization/delete.
—
delete-team
Delete one or more teams from a live LiteLLM proxy. Ask for the team_id(s) and confirm before calling POST /team/delete.
—
delete-user
Delete one or more users from a live LiteLLM proxy. Ask for the user_id(s) and confirm before calling POST /user/delete.
—
update-agent
Update an existing AI agent on a live LiteLLM proxy. Ask for the agent_id and what to change (model, description, MCP servers), then call PATCH /v1/agents/{agent_id}.
—
update-key
Update an existing API key on a live LiteLLM proxy. Ask for the key and what to change (budget, models, expiry), then call POST /key/update.
—
update-mcp
Update an existing MCP server on a live LiteLLM proxy. Ask for the server_id and what to change (URL, auth, description), then call PUT /v1/mcp/server.
—
update-model
Update an existing model on a live LiteLLM proxy. Ask for the model_id and what to change (API key, base URL, etc.), then call POST /model/update.
—
update-team
Update an existing team on a live LiteLLM proxy. Ask for the team_id and what to change (budget, models, limits), then call POST /team/update.
—
update-user
Update an existing user on a live LiteLLM proxy. Ask for the user_id and what to change (budget, role, models, etc.), then call POST /user/update.
—
view-usage
Query spend and token activity on a live LiteLLM proxy. Shows daily usage broken down by user, team, org, tag, job, or model. Use when the user wants to see costs, token counts, request volume, or job
—