Skip to content

Client integrations

Connect any compatible client to kluster.ai's MCP Verify server. This guide provides configuration examples for popular clients using Cloud MCP.

Self-hosted deployment

For self-hosted MCP, replace the URL with http://localhost:3001/stream and use your kluster.ai API key.

Prerequisites

Before integrating with any client:

  1. Enable MCP: Follow the platform guide to activate the MCP capabilities.
  2. Replace token: Use your actual MCP token in place of YOUR_MCP_TOKEN.

Configuration by client

Edit your Claude desktop configuration file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%/Claude/claude_desktop_config.json
{
    "mcpServers": {
        "kluster-verify-mcp": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://api.kluster.ai/v1/mcp",
                "--header",
                "Authorization: Bearer YOUR_MCP_TOKEN"
            ]
        }
    }
}

Restart Claude desktop to load the tools.

  1. Install GitHub Copilot extension.
  2. Open the Chat view and click on the tools icon.

  3. Choose Add More Tools... and click on Add MCP Server....

  4. Select Command (stdio) and enter the following command, replacing YOUR_MCP_TOKEN with your actual MCP token:

    npx mcp-remote https://api.kluster.ai/v1/mcp \
    --header "Authorization: Bearer YOUR_MCP_TOKEN"
    
  5. Restart VS Code.

Open Cursor settings and:

  1. Select Tools & Integrations.

  2. To add your first MCP, click Add Custom MCP. To add additional MCPs later, use New MCP Server. Then enter the following configuration:

    {
        "mcpServers": {
            "kluster-verify-mcp": {
                "url": "https://api.kluster.ai/v1/mcp",
                "headers": {
                    "Authorization": "Bearer YOUR_MCP_TOKEN"
                }
            }
        }
    }
    
  3. Restart Cursor.

Run this command in your terminal:

claude mcp add kluster-verify-mcp \
  npx mcp-remote https://api.kluster.ai/v1/mcp \
  --header "Authorization: Bearer YOUR_MCP_TOKEN"

Available tools

  • verify: Validates claims against reliable sources.
  • verify_document: Verifies claims about uploaded documents.

Next steps