Skip to content

Overview

The Integrations page shows all available ways to connect your tools to Contox. Each integration card includes setup instructions, configuration snippets, and connection status.

Navigate to Integrations from the sidebar.

AI editors

VS Code Extension

Automatic session capture, git tracking, and file save events.

Setup:

  1. Install the "Contox" extension from the VS Code Marketplace
  2. Open the command palette (Ctrl+Shift+P) and run "Contox: Sign In"
  3. Select your organization and project
  4. Start coding — sessions are captured automatically

The extension supports VS Code, Cursor, Windsurf, and Antigravity. When connected, the integration card shows a green "Connected" badge.

Claude Code (MCP)

Native MCP integration for Claude Code and Claude Desktop. Lets Claude read, write, and search your project memory.

Setup:

  1. Generate an API key from the API Keys page
  2. Add the MCP server configuration to your Claude settings:
json
{
  "mcpServers": {
    "contox": {
      "command": "npx",
      "args": ["-y", "@contox/mcp-server"],
      "env": {
        "CONTOX_API_KEY": "your-api-key",
        "CONTOX_PROJECT_ID": "your-project-id"
      }
    }
  }
}
  1. Start a conversation — Claude can now access your project memory

Cursor

Same MCP server, configured in Cursor settings.

Setup:

  1. Generate an API key from the API Keys page
  2. Open Cursor Settings and navigate to MCP Servers
  3. Add the Contox MCP server with your API key and project ID
  4. Cursor will now have access to your project memory

Command line

CLI

The CLI works with any AI tool. Load memory, save sessions, and scan codebases from the terminal.

Setup:

bash
npm install -g contox-cli
contox auth login

Common commands:

bash
contox memory               # Load project memory
contox save "what I did"    # Save session work
contox scan                 # Scan codebase structure
contox search "auth"        # Search memory

See the Setup page for the full command reference.

Platform integrations

GitHub

Connect repositories for automatic PR context, issue tracking, and code review insights. Coming soon.

Slack

Get notified when scans complete, security issues are found, or memory items become stale. Coming soon.

Connection status

Integration cards show one of three statuses:

StatusMeaning
ConnectedActive connection detected (e.g., VS Code extension has an active session)
AvailableReady to set up
Coming SoonNot yet available

Next steps

  • Setup & CLI — Full CLI command reference and IDE connection
  • API Keys — Generate keys for MCP and CLI authentication
  • Brain Explorer — Browse the memory populated by your integrations