Integrations
Cursor IDE
Use QANATIX in Cursor via MCP.
Cursor Integration
Cursor supports MCP tools natively. Add QANATIX to query your data while coding.
Setup
Open Cursor settings and add an MCP server:
- Open Settings > MCP
- Add a new server:
- Name:
qanatix - Transport:
HTTP - URL:
https://api.qanatix.com/mcp/
- Name:
- Add the authorization header:
Authorization: Bearer sk_live_abc123...
Or add to your project's .cursor/mcp.json:
{
"mcpServers": {
"qanatix": {
"url": "https://api.qanatix.com/mcp/",
"headers": {
"Authorization": "Bearer sk_live_abc123..."
}
}
}
}Usage
In Cursor's AI chat, ask data questions:
What are the specs for the SGT-800 turbine in our database?
Cursor calls qanatix_search() and returns results inline.
This is especially useful when coding against enterprise data — look up schemas, validate assumptions, and check specs without leaving your editor.