Skip to main content

Requirements

  1. Manglai API tokenGenerate token
  2. Node.js 18+ — To run mcp-remote

Cursor Setup

Edit .cursor/mcp.json (create it if it doesn’t exist):
{
  "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
{
  "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