Skip to main content

Connect a client to LiteLLM

Once your LiteLLM gateway is running, a coding tool or chat app connects to it in one of two ways, and each page in this section walks a specific client through both.

LLM routing points the client's model traffic at LiteLLM. The client keeps its normal interface, but every request flows through the gateway, so you get one API surface for 100+ models plus spend tracking, budgets, and guardrails. You need three values: the gateway base URL, a virtual key, and a model_name from your config.

MCP connects the client to LiteLLM's MCP gateway so it can call the tools you expose there. The client reaches LiteLLM at an MCP endpoint and authenticates with a virtual key; LiteLLM fans out to the upstream MCP servers you registered and applies access control, cost tracking, and guardrails on the way.

What each client supports​

ClientSurfaceLLM routingMCP
Claude CodeCLIYesYes
Claude DesktopGUIYesYes
Codex (ChatGPT Desktop)GUIYesYes
Codex (CLI)CLIYesYes

The values you will reuse everywhere​

Create a virtual key from the Admin UI under Virtual Keys -> + Create New Key, or with POST /key/generate.

ValueWhere it comes fromExample
Gateway base URLWhere your proxy listenshttp://localhost:4000
Virtual keyAdmin UI: Virtual Keys -> + Create New Key, or POST /key/generatesk-1234
Model nameA model_name under model_list in your configclaude-sonnet-5
MCP endpoint<base URL>/mcp for every server the key can see, or <base URL>/<server_name>/mcp for onehttp://localhost:4000/my_mcp_server/mcp
MCP auth headerYour virtual key as a bearer token, in Authorization or x-litellm-api-keyAuthorization: Bearer sk-1234

LiteLLM accepts the virtual key on the MCP endpoint in either Authorization: Bearer <key> or x-litellm-api-key: Bearer <key>. When configuring a bearer token setting, use your virtual key; the client sends it in Authorization. When configuring custom headers, prefer x-litellm-api-key, which leaves Authorization free for an upstream server's own OAuth token. See the MCP configuration reference for endpoint and header selection.

Grant the key access to the MCP server

A virtual key only sees the MCP servers it has been granted. Without a grant the gateway answers The key is not allowed to access the requested MCP servers: my_mcp_server. Grant access on the key with "object_permission": {"mcp_servers": ["my_mcp_server"]} in POST /key/generate, on its team, or mark the server public with allow_all_keys: true. Details in MCP access control.

If you do not have a gateway running yet, start with Deploy the Gateway -> Quickstart, then come back here to connect your client.

🚅
LiteLLM Enterprise
SSO/SAML, audit logs, spend tracking, multi-team management, and guardrails — built for production.
Learn more →