Connect your AI agent
Audience: anyone using an MCP-capable agent or editor (Cursor, Claude Code, VS Code, and others) who wants Mooov docs and API schemas available to it while building an integration.
Mooov runs a public MCP server at https://mcp.mooov.money/mcp
(MCP Streamable HTTP). Point your agent at it and it can search these
docs, list the gateway API operations, and pull exact request,
response, and webhook schemas instead of guessing them.
1. What it exposes
Documentation and schema tools only. No credentials are needed and no account data is reachable: nothing the server returns is scoped to a merchant, a key, or an environment. Everything it serves is also published on this site; the MCP surface just makes it queryable by a model.
Account-scoped tools (payment lookups, sandbox writes) are planned and will require a Mooov credential when they ship. Today: docs and schemas, nothing else.
2. Install in Cursor
The button opens Cursor on the machine it is clicked on; if nothing
happens, Cursor is not installed there. Manual fallback: Cursor
Settings -> Tools & Integrations -> Add Custom MCP, with the URL
https://mcp.mooov.money/mcp.
3. Install in Claude Code
claude mcp add --transport http mooov https://mcp.mooov.money/mcp
4. Any other MCP client
Any client that speaks MCP Streamable HTTP works. The generic config:
{ "mcpServers": { "mooov": { "url": "https://mcp.mooov.money/mcp" } } }
5. Tools
| Tool | What it answers |
|---|---|
mooov.search_docs |
Keyword search across these published docs. Returns matching pages ranked by match frequency, with a snippet around the first hit. |
mooov.lookup_skill |
Reserved. Returns an empty list on the public server. |
mooov.list_endpoints |
The gateway API operations from the OpenAPI spec. Filterable by tag, method, or path prefix. |
mooov.describe_endpoint |
The full request and response schema for one operation, selected by operation_id or method + path. |
mooov.list_event_types |
The webhook event catalog: type, summary, since-version. |
mooov.describe_event |
Payload shape plus an example payload for one event type. |
6. What it can't do
No account data, no payments, no secrets. The server cannot create a payment, read a balance, or mint a key; for that you integrate the API itself. Start with the merchant quickstart or, for platforms, the platform quickstart, and test against the sandbox.
7. Roadmap
Tier 0 (current). What's live at https://mcp.mooov.money/mcp
today: the six unauthenticated, read-only tools in §5
(mooov.search_docs, mooov.lookup_skill, mooov.list_endpoints,
mooov.describe_endpoint, mooov.list_event_types,
mooov.describe_event). Docs, endpoint catalogue, and event
catalogue only; nothing account-scoped.
Planned tiers. Account-scoped capabilities (payment lookups,
sandbox writes) authenticated with a platform key or a short-lived
setup token. The mcp:read scope in the
scopes reference is already grantable so consent
is on record when these ship. No dates committed; new tiers will be
announced as additive changes under the standard versioning policy.