Logo

MCP Setup Instructions

Step-by-step instructions for connecting Claude, Cursor, Codex, and other AI apps to the Quotient MCP server.

Connect your AI app to the Quotient MCP server at https://www.getquotient.ai/mcp. Most clients support remote MCP natively; for those that don't, use the mcp-remote bridge shown under Other clients. After you add the server, you'll be prompted to sign in to Quotient to authorize access.

Once connected, your AI app will show Quotient as an available MCP server and ask you to authorize access before it can read or change anything in your account.

Claude

From Claude Settings → Connectors, select Add custom connector, and enter https://www.getquotient.ai/mcp. Then authenticate when prompted.

Claude Code

claude mcp add --transport http quotient https://www.getquotient.ai/mcp

Then run /mcp in a session to complete authentication.

Codex

codex mcp add quotient --url https://www.getquotient.ai/mcp

This prompts you to log in with your Quotient account. (First-time MCP users must set experimental_use_rmcp_client = true under [features] in ~/.codex/config.toml.)

Cursor

Open Settings → MCP Tools → Add custom MCP, then add:

{
  "mcpServers": {
    "quotient": {
      "url": "https://www.getquotient.ai/mcp"
    }
  }
}

VS Code

CMD/CTRL + PMCP: Add ServerHTTP, then enter the URL https://www.getquotient.ai/mcp and name it Quotient. Start it via MCP: List Servers.

Windsurf

CMD/CTRL + ,Cascade → MCP servers → Add custom server:

{
  "mcpServers": {
    "quotient": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://www.getquotient.ai/mcp"]
    }
  }
}

Zed

CMD + , to open settings, then add:

{
  "context_servers": {
    "quotient": {
      "source": "custom",
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://www.getquotient.ai/mcp"],
      "env": {}
    }
  }
}

Other clients

For any client that doesn't yet support remote MCP natively, use the mcp-remote bridge:

  • Command: npx
  • Arguments: -y mcp-remote https://www.getquotient.ai/mcp
  • Environment: None

Next Up