Data & analysis

Latitude MCP

Try it

Connect OpenClaw to the Latitude MCP server so the agent can read and manage your Latitude workspace (projects, traces, spans, issues, annotations, scores, s...

What it does

Connect OpenClaw to the Latitude MCP server so the agent can read and manage your Latitude workspace (projects, traces, spans, issues, annotations, scores, saved searches, datasets, monitors, members). Use when adding Latitude as a remote MCP server in OpenClaw.

The skill document

Latitude MCP for OpenClaw

Latitude is an open-source LLM observability and evaluation platform. Its MCP server is a remote, OAuth-authenticated, streamable HTTP Model Context Protocol server at https://api.latitude.so/v1/mcp.

Connecting it lets an OpenClaw agent read and manage your Latitude workspace directly: projects, members, API keys, traces, spans, issues, annotations, scores, saved searches, datasets, monitors, and more. The tool catalog is generated dynamically from the Latitude API, so it stays in sync with the platform.

There is no API key to copy. Authentication is browser-based OAuth: on first login you pick which Latitude organization to grant the agent access to, and you can revoke it any time from your Latitude organization's Settings → Keys under OAuth Keys.

When to use

Use this when you want OpenClaw to query or manage Latitude, or when someone asks how to add the Latitude MCP server to OpenClaw.

Add the server

Register Latitude as a user-managed MCP server with OAuth enabled:

openclaw mcp add latitude \
  --url https://api.latitude.so/v1/mcp \
  --transport streamable-http \
  --auth oauth

This is equivalent to adding the following to ~/.openclaw/openclaw.json:

{
  "mcp": {
    "servers": {
      "latitude": {
        "url": "https://api.latitude.so/v1/mcp",
        "transport": "streamable-http",
        "auth": "oauth"
      }
    }
  }
}

Authenticate

Start the OAuth flow, which prints an authorization URL:

openclaw mcp login latitude

Open the URL, sign in if needed, and pick the organization to authorize. Then finish the login with the code it gives you:

openclaw mcp login latitude --code 

To sign out later, run openclaw mcp logout latitude.

Verify

Probe the connection and list the tools the server exposes:

openclaw mcp doctor latitude --probe

A healthy probe confirms the agent can now call Latitude tools. You can also manage the server from the Control UI at /mcp.

Notes

  • auth: "oauth" uses the MCP-native OAuth handshake, so no API key or static Authorization header is needed. If you set auth: "oauth", any static headers are ignored.
  • If you self-host Latitude, use your own MCP URL instead of https://api.latitude.so/v1/mcp.
  • To narrow which tools are exposed, add a toolFilter with include and exclude globs to the server entry in ~/.openclaw/openclaw.json.

Related skills

Install or refresh the COROS MCP connection inside OpenClaw through the global mcp.coros.com gateway, automatically pinning the connection to the CN, EU, or...

11 installs1 stars

Route OpenClaw CLI requests to the right command family and profile, then verify the outcome.

336 installs7 stars

Advanced MCP client enabling seamless integration with tools, data sources, and services via the Model Context Protocol. Supports dynamic discovery and invocation of remote capabilities, ensuring robust connectivity and interoperability across diverse external resources. Optimized for reliable, low-

Connect OpenClaw and other agent clients to hosted or local Sendmux MCP servers for mailbox, sending, and management tools.

Export OpenClaw OTLP traces to Latitude for open-source LLM observability and evaluation. Use when configuring diagnostics.otel to send OpenClaw model-call,...

1 installs