Connect AI tools like Claude Desktop to your Oversight business data.
The Model Context Protocol (MCP) lets AI applications connect to external data sources and tools. With the Oversight MCP server, you can use Claude Desktop (or any MCP-compatible client) to query your business data using natural language.
1. Generate an API key in Settings → API Keys in the Oversight dashboard.
2. Open Claude Desktop settings and add this to your MCP configuration:
{
"mcpServers": {
"oversight": {
"url": "https://oversight.cobenian.com/mcp",
"headers": {
"Authorization": "Bearer ovst_your_api_key_here"
}
}
}
}
3. Restart Claude Desktop. You'll see Oversight tools available in your conversations.
The MCP server uses the same API keys as the REST API. Include your key as a Bearer token:
Authorization: Bearer ovst_your_key_here
API keys are scoped to your account. All tool calls return only your account's data.
client_id (required)limit (optional, default 20)status (optional), client_id (optional)query (required)status (optional), limit (optional)hypothesis_id (required)hypothesis_id (required)hypothesis_id (required)limit (optional)limit (optional)query (required)query (required), mode (required: weekly_review, client_deep_dive, correction, quarterly_planning, knowledge_review)curl -X POST https://oversight.cobenian.com/mcp \
-H "Authorization: Bearer ovst_your_key_here" \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "list_hypotheses",
"arguments": {"limit": 5}
}
}'
100 requests per minute per API key, shared with the REST API.