> ## Documentation Index
> Fetch the complete documentation index at: https://developers.manglai.io/llms.txt
> Use this file to discover all available pages before exploring further.

# MCP Quickstart

> Set up the Manglai MCP in minutes

## Requirements

1. **Manglai API token** — [Generate token](https://www.manglai.io/saas/settings/api-tokens/docs#models)
2. **Node.js 18+** — To run `mcp-remote`

## Cursor Setup

Edit `.cursor/mcp.json` (create it if it doesn't exist):

```json theme={null}
{
  "mcpServers": {
    "manglai": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://mcp.manglai.io/sse",
        "--header",
        "Authorization:Bearer ${MANGLAI_TOKEN}"
      ],
      "env": {
        "MANGLAI_TOKEN": "your_token_here"
      }
    }
  }
}
```

Replace `your_token_here` with your actual token and restart Cursor.

## Claude Desktop Setup

Edit `claude_desktop_config.json`:

* **macOS:** `~/Library/Application Support/Claude/claude_desktop_config.json`
* **Windows:** `%APPDATA%\Claude\claude_desktop_config.json`

```json theme={null}
{
  "mcpServers": {
    "manglai": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://mcp.manglai.io/sse",
        "--header",
        "Authorization:Bearer ${MANGLAI_TOKEN}"
      ],
      "env": {
        "MANGLAI_TOKEN": "your_token_here"
      }
    }
  }
}
```

Restart Claude Desktop.

## Verify Connection

Once configured, open a chat and ask:

> "List my companies in Manglai"

If the MCP is working, the assistant will use the `get_companies` tool and display your companies.

## Next Steps

* [Using mcp-remote](/mcp/en/mcp-remote) — More configuration options
* [Tools: Companies](/mcp/en/tools/companies) — What you can query about companies
* [Claude integration](/mcp/en/integrations/claude) — Claude-specific guide
