Skip to main content
Configure your MCP-compatible client to connect to the hosted Mission Control MCP server and authenticate with a CoreWeave API token. For an overview of the server and its use cases, see Introduction to Mission Control MCP. For the full tool catalog, see the Mission Control MCP tool reference.

Before you begin

You need the following:
  • A CoreWeave account and a CoreWeave API token. See API access tokens.
  • An MCP-compatible client, such as Claude Code, Cursor, or Codex.

Connect a client

1

Create an API token

Open the CoreWeave Cloud Console tokens page and create a new API token. Copy the token value. Your MCP client sends it as a bearer token when it calls Mission Control MCP.Treat the token like a password. It grants the same read access that your account has.
2

Add the server to your client

Configure your MCP client to connect to the Mission Control MCP endpoint and send your token as a bearer token. Replace [YOUR-COREWEAVE-API-TOKEN] with the token from the previous step.
Run the following command:
claude mcp add --transport http mission-control \
  https://mc.coreweave.com/mcp \
  --header "Authorization: Bearer [YOUR-COREWEAVE-API-TOKEN]"
Start a new Claude Code session after adding the server.
3

Verify the connection

Ask your agent a question and confirm it calls a Mission Control MCP tool:
  • “List my CoreWeave clusters.”
  • “Search the CoreWeave docs for object storage authentication.”
  • “Find dashboards related to my cluster.”
Look for a Mission Control MCP tool call, such as list_datasources or cw_cluster_get, in your client’s tool-use display. Seeing the tool call confirms the connection works. If your client shows a 401 error instead, your token is missing or incorrect. Return to the first step and create a new token.The server resolves your organization and identity from the bearer token and scopes the response to what your token can access.
Last modified on June 25, 2026