Skip to content

Connect a client

The QuantConomy MCP server is hosted — there is nothing to install. Point any MCP-capable client at the endpoint and authenticate with your API key:

https://mcp.quantconomy.com/mcp

The transport is Streamable HTTP (stateless). The server reads your key from the Authorization: Bearer mtk_... header on every request, so each call your agent makes is authenticated and metered exactly like a direct REST call.

You need an API key first. Create one in the dashboard at app.quantconomy.com under Account → API Keys. Keys look like mtk_a1b2c3d4.... See Authentication for details.

Add the server over HTTP with your key as an Authorization header:

  1. Add the server:

    Terminal window
    claude mcp add --transport http quantconomy https://mcp.quantconomy.com/mcp \
    --header "Authorization: Bearer mtk_your_key_here"
  2. Confirm it registered and is reachable:

    Terminal window
    claude mcp list

Once connected, ask the agent to call get_account (or read the quantconomy://account resource). It returns your plan, credit balance, and rate limits — a quick confirmation that your key is wired up correctly. If you get a 401, the key is missing or invalid; a 402 means you are out of credits.