Documentation Index
Fetch the complete documentation index at: https://docs.latitude.so/llms.txt
Use this file to discover all available pages before exploring further.
Overview
The Latitude MCP is a remote, OAuth-authenticated, streamable HTTP Model Context Protocol server, living at https://api.latitude.so/v1/mcp.
It is the portal that AI agents — Claude, Cursor, Codex, Gemini, Zed, OpenCode, and others — can use to read and manage your Latitude workspace.
The MCP exposes everything you can do in the Latitude UI as tools — managing projects, members, keys, traces, annotations, scores, searches, issues, datasets, and more.
Tools are dynamically generated from the Latitude API, so the catalog automatically stays in sync with the platform. For the live list of tools, their descriptions, and their input/output schemas, you can check the API reference
To see or revoke connected agents at any time, go to your organization’s Settings → Keys and look at the OAuth Keys section. Revoking immediately cuts off the agent’s access.
Installation
The MCP is compatible with all the most common agents, harnesses or IDEs you use. We have built extensions for many of them, otherwise check the Manual section tab with the exact install steps. If your agent isn’t listed below, tell your agent to add the Latitude MCP as a Remote Streamable HTTP MCP server with URL https://api.latitude.so/v1/mcp and OAuth enabled — those are the only two things the agent needs to know!
Cursor Desktop
Install the Latitude MCP from the Cursor plugins marketplace. Open the MCP config
Go to Cursor Settings → Tools & MCPs → Add Custom MCP, or edit ~/.cursor/mcp.json directly.
Add the Latitude MCP
{
"mcpServers": {
"latitude": {
"url": "https://api.latitude.so/v1/mcp"
}
}
}
Connect
Go back to Cursor Settings and click Connect on the latitude MCP.
Authorize
Sign in (if needed) and pick the organization you want this Cursor Agent to access in the consent screen.
Cursor CLI
Install the Latitude MCP from the Cursor plugins marketplace. Open the MCP config
Edit ~/.cursor/mcp.json.
Add the Latitude MCP
{
"mcpServers": {
"latitude": {
"url": "https://api.latitude.so/v1/mcp"
}
}
}
Verify installation
Verify the Latitude MCP was added running: Authenticate
Run (outside of Cursor CLI): Authorize
Sign in (if needed) and pick the organization you want this Cursor Agent to access in the consent screen.
Claude Code Desktop
Install the Latitude MCP from the Claude plugins directory. Open the MCP config
Go to Settings → Developer → Edit Config or edit ~/Library/Application Support/Claude/claude_desktop_config.json directly.
Add the Latitude MCP
Claude Code Desktop does not support remote OAuth MCP servers natively, so we use the mcp-remote bridge.{
"mcpServers": {
"latitude": {
"command": "npx",
"args": ["mcp-remote", "https://api.latitude.so/v1/mcp"]
}
}
}
Restart Claude Code
After restart, Claude Code will open a browser tab to authenticate the Latitude MCP.
Authorize
Sign in (if needed) and pick the organization you want this Claude Code Agent to access in the consent screen.
Claude Code CLI
Install the Latitude MCP from the Claude plugins directory. Add the Latitude MCP
Run (outside of Claude Code):claude mcp add --transport http latitude https://api.latitude.so/v1/mcp --scope user
Or edit ~/.claude.json directly:{
"mcpServers": {
"latitude": {
"type": "http",
"url": "https://api.latitude.so/v1/mcp"
}
}
}
Verify installation
Verify the Latitude MCP was added running: Authenticate
Run Claude Code (claude), type /mcp, select latitude, then Authenticate.
Authorize
Sign in (if needed) and pick the organization you want this Claude Code Agent to access in the consent screen.
Codex Desktop
Install the Latitude MCP from the Codex plugins directory. Open the MCP config
Open Codex and go to Settings → MCP Servers → Add Server, or edit ~/.codex/config.toml.
Add the Latitude MCP
[mcp_servers.latitude]
transport = "http"
url = "https://api.latitude.so/v1/mcp"
Connect
Restart Codex or click Connect on the latitude MCP.
Authorize
Sign in (if needed) and pick the organization you want this Codex Agent to access in the consent screen.
Codex CLI
Install the Latitude MCP from the Codex plugins directory. Open the MCP config
Edit ~/.codex/config.toml.
Add the Latitude MCP
[mcp_servers.latitude]
transport = "http"
url = "https://api.latitude.so/v1/mcp"
Authenticate
Run Codex (codex), type /mcp, select latitude, then Authenticate.
Authorize
Sign in (if needed) and pick the organization you want this Codex Agent to access in the consent screen.
Gemini CLI
Install the Latitude MCP from the Gemini extensions marketplace. Open the MCP config
Edit ~/.gemini/settings.json.
Add the Latitude MCP
{
"mcpServers": {
"latitude": {
"httpUrl": "https://api.latitude.so/v1/mcp"
}
}
}
Authenticate
Run Gemini (gemini), type /mcp, select latitude, then Authenticate.
Authorize
Sign in (if needed) and pick the organization you want this Gemini Agent to access in the consent screen.
Google Antigravity
Install the Latitude MCP from the Antigravity extensions marketplace. Open the MCP config
Go to Antigravity Settings → MCP servers, or edit ~/.antigravity/mcp.json directly.
Add the Latitude MCP
{
"mcpServers": {
"latitude": {
"url": "https://api.latitude.so/v1/mcp"
}
}
}
Connect
Go back to Antigravity Settings and click Connect on the latitude MCP.
Authorize
Sign in (if needed) and pick the organization you want this Antigravity Agent to access in the consent screen.
Zed
Install the Latitude MCP from the Zed extensions marketplace. Open the MCP config
Go to Agent Settings → Model Context Protocol (MCP) Servers → Add Server → Add Custom Server → Remote, or edit ~/.config/zed/settings.json directly.
Add the Latitude MCP
{
"context_servers": {
"latitude": {
"url": "https://api.latitude.so/v1/mcp"
}
}
}
Authenticate
Go back to Agent Settings and click Authenticate on the latitude MCP.
Authorize
Sign in (if needed) and pick the organization you want this Zed Agent to access in the consent screen.
OpenCode Desktop
OpenCode Desktop does not currently support adding MCP servers from the desktop UI. Instead, set it up via the OpenCode CLI steps. After a restart you can enable it typing /mcp.
OpenCode CLI
Add the Latitude MCP
Run (outside of OpenCode):and answer the prompts with name latitude, type remote, url https://api.latitude.so/v1/mcp, oauth yes, client id no.
Or edit ~/.config/opencode/opencode.json directly:{
"mcp": {
"latitude": {
"type": "remote",
"url": "https://api.latitude.so/v1/mcp"
}
}
}
Verify installation
Verify the Latitude MCP was added running: Authenticate
Run (outside of OpenCode):opencode mcp auth latitude
Authorize
Sign in (if needed) and pick the organization you want this OpenCode Agent to access in the consent screen.