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:
- Enable MCP: Follow the platform guide to activate the MCP capabilities.
- 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.
- Install GitHub Copilot extension.
-
Open the Chat view and click on the tools icon.
-
Choose Add More Tools... and click on Add MCP Server....
-
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"
-
Restart VS Code.
Open Cursor settings and:
-
Select Tools & Integrations.
-
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" } } } }
-
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#
- Complete setup guide with usage examples.
- Self-hosted deployment for local development.