XintoX Integration Guide

Connect your AI agent in under 2 minutes. Fully compatible with all Model Context Protocol (MCP) clients.

Option 1: Cloud Gateway Setup (Zero Local Setup)

Recommended for teams using Cursor, Antigravity, or Windsurf. Zero local software to manage.

// Add to your cursor or antigravity mcp.json: { "mcpServers": { "xintox": { "url": "https://api.xintox.io/mcp", "headers": { "x-xintox-key": "xt_live_your_provisioned_key_here" } } } }

Option 2: Local CLI Setup

For developers preferring to run the context engine locally on their workstation.

# 1. Install CLI pip install -e D:\xintox # 2. Analyze project context xintox index "path/to/my-repo" # 3. Add to IDE config: { "mcpServers": { "xintox": { "command": "xintox", "args": ["serve", "--transport", "stdio"] } } }