
Description
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}.
SKILL.md
Update Agent
Update an existing AI agent on a live LiteLLM proxy.
Setup
LITELLM_BASE_URL — e.g. https://my-proxy.example.com
LITELLM_API_KEY — proxy admin key
Ask the user
- agent_id — if they don't have it, list first:
curl -s "$BASE/v1/agents" -H "Authorization: Bearer $KEY" - What to change — any combination of:
model(swap the underlying model)descriptiontpm_limit/rpm_limit- MCP server access
Run
Use PATCH to update only the changed fields:
curl -s -X PATCH "$BASE/v1/agents/<agent_id>" \
-H "Authorization: Bearer $KEY" \
-H "Content-Type: application/json" \
-d '{
"litellm_params": {"model": "<new_model>"},
"agent_card_params": {"description": "<new_description>"}
}'
Output
Show the updated agent name, model, and description. Confirm the agent ID is unchanged.
More skills from the litellm-skills repository
View all 21 skillsadd-agent
create AI agents on LiteLLM proxy
Jul 14AgentsAPI DevelopmentLLMMCPadd-key
generate API keys on LiteLLM proxy
Jul 14AI InfrastructureAPI DevelopmentLiteLLMadd-mcp
register MCP servers on LiteLLM proxy
Jul 14AI InfrastructureLiteLLMMCPadd-model
add models to LiteLLM proxy
Jul 14AI InfrastructureLiteLLMLLMadd-org
create organizations on LiteLLM proxy
Jul 14AI InfrastructureLiteLLMManagementadd-team
create new teams on LiteLLM proxy
Jul 14AI InfrastructureLLMManagement
More from LiteLLM
View publisheradd-user
create LiteLLM proxy users
litellm-skills
Jul 14AI InfrastructureLLMOperationsdelete-agent
delete AI agents from LiteLLM proxy
litellm-skills
Jul 14AgentsAI InfrastructureLiteLLMManagementdelete-key
delete API keys from LiteLLM proxy
litellm-skills
Jul 14API DevelopmentLiteLLMSecuritydelete-mcp
delete MCP servers from LiteLLM proxy
litellm-skills
Jul 14AI InfrastructureConfigurationMCPdelete-model
delete models from LiteLLM proxy
litellm-skills
Jul 14AI InfrastructureLiteLLMLLMManagementdelete-org
delete organizations from LiteLLM proxy
litellm-skills
Jul 14AI InfrastructureLiteLLM