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 Chat view and click on the tools icon.
- Choose "Add More Tools..." and click on "Add MCP Server".
- Enter server details:
- Command:
npx
- Args:
mcp-remote https://api.kluster.ai/v1/mcp --header "Authorization: Bearer YOUR_MCP_TOKEN"
. - Restart VS Code.
- Open Cursor settings and click on MCP.
- Add server configuration:
- Command:
npx mcp-remote https://api.kluster.ai/v1/mcp --header "Authorization: Bearer YOUR_MCP_TOKEN"
. - Enable verification tools.
- 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#
- Complete setup guide with usage examples.
- Self-hosted deployment for local development.