update-mcp
Installation
SKILL.md
Update MCP Server
Update an existing MCP server registration 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
- server_id — if they don't have it, list first:
curl -s "$BASE/v1/mcp/server" -H "Authorization: Bearer $KEY" - What to change — any combination of:
urlcredentials(rotate the auth token)descriptionallowed_tools(list of tool names to expose)
Run
curl -s -X PUT "$BASE/v1/mcp/server" \
-H "Authorization: Bearer $KEY" \
-H "Content-Type: application/json" \
-d '{
"server_id": "<server_id>",
"url": "<new_url>",
"credentials": "<new_token>"
}'
Only include the fields being changed.
Output
Confirm the server was updated and show the updated fields.
Related skills
More from berriai/litellm-skills
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 LiteLLM proxy instance.
11add-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 an API key on a LiteLLM proxy instance.
10add-mcp
>
10delete-mcp
>
10update-key
>
10update-model
>
10