MCP Integration
Use ExoGraph directly from Claude Desktop and Cursor. Natural language interface, zero code required.
Powerful graph-based reasoning, autonomous research, and semantic search – all in one API
Generate an API key in your ExoGraph dashboard, then:
# Chat with graph-based reasoning
curl -X POST https://exograph.ai/agent/interactions \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "snap",
"reasoning_engine": "graph",
"messages": [{
"role": "user",
"content": "What are the key relationships in my knowledge base?"
}]
}'Response includes credit usage:
{
"messages": [...],
"usage": {
"credits_consumed": 3,
"balance_remaining": 97,
"operation": "chat_query",
"model": "snap"
}
}