Loading...
Loading...
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.
npx skill4agent add berriai/litellm-skills update-mcpLITELLM_BASE_URL — e.g. https://my-proxy.example.com
LITELLM_API_KEY — proxy admin keycurl -s "$BASE/v1/mcp/server" -H "Authorization: Bearer $KEY"urlcredentialsdescriptionallowed_toolscurl -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>"
}'