Skip to main content

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.

Cursor CLI

Install the Latitude MCP from the Cursor plugins marketplace.

Claude Code Desktop

Install the Latitude MCP from the Claude plugins directory.

Claude Code CLI

Install the Latitude MCP from the Claude plugins directory.

Codex Desktop

Install the Latitude MCP from the Codex plugins directory.

Codex CLI

Install the Latitude MCP from the Codex plugins directory.

Gemini CLI

Install the Latitude MCP from the Gemini extensions marketplace.

Google Antigravity

Install the Latitude MCP from the Antigravity extensions marketplace.

Zed

Install the Latitude MCP from the Zed extensions marketplace.

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

1

Add the Latitude MCP

Run (outside of OpenCode):
opencode mcp add
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"
    }
  }
}
2

Verify installation

Verify the Latitude MCP was added running:
opencode mcp list
3

Authenticate

Run (outside of OpenCode):
opencode mcp auth latitude
4

Authorize

Sign in (if needed) and pick the organization you want this OpenCode Agent to access in the consent screen.