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}.

BerriAI 01069b0 819 B Updated

File contents

Delete MCP Server

Remove an MCP server registration from a live LiteLLM proxy.

Setup

LITELLM_BASE_URL  — e.g. https://my-proxy.example.com
LITELLM_API_KEY   — proxy admin key

Ask the user

  1. server_id — if they don't have it, list first:
    curl -s "$BASE/v1/mcp/server" -H "Authorization: Bearer $KEY"
    
  2. Confirm — show the server name/URL and ask for confirmation.

Run

curl -s -X DELETE "$BASE/v1/mcp/server/<server_id>" \
  -H "Authorization: Bearer $KEY"

Output

Confirm deletion. Note that any agents using this MCP server will lose access to its tools.

berriai/litellm-skills/tree/main/delete-mcp commit 01069b027e

Frequently asked questions

npx skillmds@latest add berriai/delete-mcp