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:
- Install the "Contox" extension from the VS Code Marketplace
- Open the command palette (Ctrl+Shift+P) and run "Contox: Sign In"
- Select your organization and project
- 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:
- Generate an API key from the API Keys page
- Add the MCP server configuration to your Claude settings:
{
"mcpServers": {
"contox": {
"command": "npx",
"args": ["-y", "@contox/mcp-server"],
"env": {
"CONTOX_API_KEY": "your-api-key",
"CONTOX_PROJECT_ID": "your-project-id"
}
}
}
}
- Start a conversation — Claude can now access your project memory
Cursor
Same MCP server, configured in Cursor settings.
Setup:
- Generate an API key from the API Keys page
- Open Cursor Settings and navigate to MCP Servers
- Add the Contox MCP server with your API key and project ID
- 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:
npm install -g contox-cli
contox auth login
Common commands:
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:
| Status | Meaning |
|---|---|
| Connected | Active connection detected (e.g., VS Code extension has an active session) |
| Available | Ready to set up |
| Coming Soon | Not 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