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 Chat view and click on the tools icon.
  3. Choose "Add More Tools..." and click on "Add MCP Server".
  4. Enter server details:
  5. Command: npx
  6. Args: mcp-remote https://api.kluster.ai/v1/mcp --header "Authorization: Bearer YOUR_MCP_TOKEN".
  7. Restart VS Code.
  1. Open Cursor settings and click on MCP.
  2. Add server configuration:
  3. Command: npx mcp-remote https://api.kluster.ai/v1/mcp --header "Authorization: Bearer YOUR_MCP_TOKEN".
  4. Enable verification tools.
  5. 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.

See Tools reference for parameters and examples.

Next steps