QANATIX
Integrations

Integrations Overview

Connect QANATIX to any AI model — Claude, GPT, Gemini, LangChain, or your own agent.

Integrations

QANATIX works with any AI model through two protocols:

ProtocolBest forLatency
MCP (Streamable HTTP)Claude Desktop, Claude Code, Cursor, any MCP clientNative tool calling
REST APIGPT, Gemini, LangChain, custom agentsStandard HTTP

MCP — native AI tool

QANATIX exposes four MCP tools:

ToolDescription
qanatix_open_searchFull-text search across a collection
qanatix_open_aggregateCount, group, and compute stats on records
qanatix_open_lookupGet a specific record by ID
qanatix_open_collectionsList available collections and their schemas

And two MCP resources:

ResourceDescription
record://\{record_id\}Read-only access to a single record by UUID
schema://\{collection\}/\{record_type\}Inferred field names and types for a collection (read-only, auto-detected)

When Claude or Cursor sees a question about data, it calls qanatix_search() automatically and gets back your verified results.

Choose your integration

IntegrationProtocolBest for
Python SDKHTTP (httpx)Data pipelines, scripts, notebooks
Claude (MCP)MCPClaude Desktop + Claude Code
OpenAI (REST)RESTGPT-4o function calling
LangChainRESTTool integration
CursorMCPIDE MCP
Custom agentMCP/RESTBuild your own

Python SDK

Install and start querying in three lines:

import qanatix

qx = qanatix.Qanatix("sk_live_...")
results = qx.search("parts_catalog", "stainless M8 bolt")

Full guide: Python SDK →

On this page