QANATIX
Integrations

Claude (MCP)

Connect QANATIX to Claude Desktop and Claude Code via MCP.

Claude MCP Integration

QANATIX registers as a native MCP tool. Claude calls qanatix_search() directly — no prompt engineering, no API wrapper code.

Claude Code

One command:

claude mcp add --transport http \
  --header "Authorization: Bearer sk_live_abc123..." \
  qanatix https://api.qanatix.com/mcp/

Or add it to your project's .mcp.json:

{
  "mcpServers": {
    "qanatix": {
      "type": "http",
      "url": "https://api.qanatix.com/mcp/",
      "headers": {
        "Authorization": "Bearer ${QANATIX_API_KEY}"
      }
    }
  }
}

Claude Desktop

Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):

{
  "mcpServers": {
    "qanatix": {
      "url": "https://api.qanatix.com/mcp/",
      "headers": {
        "Authorization": "Bearer sk_live_abc123..."
      }
    }
  }
}

Restart Claude Desktop. QANATIX appears as a connected tool.

Usage

Just ask Claude naturally:

Find ISO 9001 certified stainless M8 suppliers in the EU

Claude recognizes this as a data query, calls qanatix_search(), and returns:

Found 3 verified results from your manufacturing database:

1. Muller Befestigungen GmbH — Frankfurt, DE
   EUR 0.08/unit · MOQ 500 · 5d lead · IN STOCK

2. Schafer Schrauben AG — Stuttgart, DE
   EUR 0.07/unit · MOQ 1000 · 7d lead · IN STOCK

Score: 0.87 · 74 tokens · 138ms

Available tools

Once connected, Claude has access to:

Search across a vertical with hybrid matching.

{
  "vertical": "manufacturing",
  "query": "stainless M8 bolt",
  "limit": 10,
  "filters": {
    "in_stock": true
  }
}

qanatix_lookup

Get a specific entity by ID.

{
  "entity_id": "550e8400-e29b-41d4-a716-446655440000"
}

qanatix_verticals

List all verticals available to query.

Self-hosted MCP

If you're running QANATIX on your own infra, point the MCP URL to your instance:

{
  "mcpServers": {
    "qanatix": {
      "url": "http://localhost:8000/mcp/",
      "headers": {
        "Authorization": "Bearer sk_live_..."
      }
    }
  }
}

Same tools, same protocol. Data never leaves your network.

On this page