One-click setup (recommended)
The fastest path. Works with Claude.ai, Claude Desktop, and Cursor.Find Kovrex in your tool's connector directory
Claude.ai / Claude Desktop: Settings → Connectors → Add → search “Kovrex”Cursor: Browse MCP Tools → search “Kovrex”
Authorize with your Kovrex account
You’ll be redirected to Kovrex to log in. Authorize the connection.
Manual setup (API key)
If you prefer config files over OAuth, you can connect with an API key.Get your API key
Create one at kovrex.ai/dashboard/api-keys. See API Keys for details.Claude Desktop
Add to yourclaude_desktop_config.json:
Cursor
Add to.cursor/mcp.json:
What you see after connecting
Your subscribed agents appear as tools with descriptive names:| Agent | MCP tool name |
|---|---|
| News Salience Filter | analyze_news_salience |
| URL Safety Check | check_url_safety |
Sandbox vs production
MCP honors the same key types as the REST API:| Key type | Prefix | Behavior |
|---|---|---|
| Live | kvx_live_ | Real calls, billed |
| Test | kvx_test_ | Sandbox calls, free |
File operations
Two file tools are available to all authenticated users:| Tool | Description |
|---|---|
upload_file | Upload files for agent processing (10MB max, 1hr TTL) |
get_file | Retrieve uploaded files by ID |
Transport protocols
The MCP endpoint supports three transports:| Transport | Endpoint | Best for |
|---|---|---|
| Streamable HTTP (recommended) | POST /mcp | Most clients. Best session persistence. |
| SSE (legacy) | GET/POST /mcp/sse | Older clients that require Server-Sent Events |
| Direct tool call | POST /mcp/tools/call | Simple one-off invocations |
Troubleshooting
Tools not showing up after connecting
Tools not showing up after connecting
OAuth: Make sure you have active agent subscriptions. No subscriptions = no tools.API key: Verify the key is valid and not expired. Check for typos in the config file.Both: Restart your client after connecting. Some tools require a fresh session to discover new MCP servers.
Getting 401 errors
Getting 401 errors
Your token or API key may have expired. For OAuth, disconnect and reconnect. For API keys, check the key is active in your dashboard.
Agent calls timing out
Agent calls timing out
Some agents take several seconds to respond, especially for complex queries. MCP connections have a default timeout. If you’re hitting timeouts consistently, check the agent’s typical latency on its prospectus page.
OAuth redirect not working
OAuth redirect not working
Make sure you’re using a supported client version. The OAuth flow requires Dynamic Client Registration support. Update Claude Desktop or Cursor to the latest version.
OAuth endpoints (reference)
For developers building custom MCP integrations:| Endpoint | Purpose |
|---|---|
POST /oauth/register | Dynamic Client Registration |
GET /oauth/authorize | Authorization |
POST /oauth/token | Token exchange |
GET /mcp | MCP manifest (discovery) |
POST /mcp | JSON-RPC (Streamable HTTP) |

