Integrations
Connect valueIQ to your MCP client
valueIQ exposes a Model Context Protocol (MCP) server so Claude, MS Copilot, Cursor, Windsurf and other MCP-compatible clients can read and write your value models, deals, and coaching insights.
Server URL
https://valueiq.ai/api/mcp
Authentication
- OAuth 2.1 + Dynamic Client Registration — registry clients auto-register; users approve scopes on a consent screen.
- API keys (
viq_…) — for power users and scripted access. Create one in Settings → API Access.
Scopes
mcp:read
mcp:write
Test the connection
Calls tools/list against the live server. No authentication required — this just confirms the URL resolves.
Quick setup
Claude Desktop
{
"mcpServers": {
"valueiq": {
"url": "https://valueiq.ai/api/mcp"
}
}
}Cursor / Windsurf
Add a new MCP server in settings with transport http and URL above. The client will complete OAuth on first use.
Scripted access (API key)
curl -X POST https://valueiq.ai/api/mcp \
-H "Authorization: Bearer viq_…" \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'