Operator surface
MCP Portal
Registry, tool execution, agent control, OAuth credentials, and semantic memory live on the same portal so operators can move from discovery to action without context switching.
Developer tools
Playground
Execute tool calls from the portal, inspect payloads, and validate server wiring before dispatching real work.
Setup guide
Connection snippets, registry details, and the host information needed to wire a client quickly.
OpenAPI spec
Generated reference for the MCP HTTP bridge and the agent-facing API endpoints available on this domain.
Operator surfaces
Dashboard
One operator view for fleet load, OAuth credentials, recent webhooks, and registry-level activity.
OAuth clients
Create service-account credentials for agents, restrict scopes, and revoke access without touching API keys.
Agent status
See heartbeat freshness, labels, versions, and the jobs each fleet node is carrying right now.
Brain explorer
Browse indexed memories by scope, inspect tags, and verify that memories are landing in the right projects.
Webhooks
Configure outbound event delivery, rotate signing secrets, and audit recent delivery attempts from one place.
Available servers
Quick start
Call MCP tools over HTTP with a bearer credential from the same domain used for the registry.
curl -X POST https://mcp.lthn.ai/mcp/tools/call \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"server": "openbrain",
"tool": "brain_recall",
"arguments": { "query": "recent dispatch decisions" }
}'