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...
数据分析
Latitude MCP
试用Connect OpenClaw to the Latitude MCP server so the agent can read and manage your Latitude workspace (projects, traces, spans, issues, annotations, scores, s...
它能做什么
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.
技能文档
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 setauth: "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
toolFilterwithincludeandexcludeglobs to the server entry in~/.openclaw/openclaw.json.
相关技能
Install the immutable Proxmox MCP v0.1.1 GitHub Release locally and register it with OpenClaw.
按命令族和 profile 选择合适的 OpenClaw CLI 命令,并校验执行结果。
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,...