M
Moov MCP server
Details
- Command
-
npx -y --package @moovio/sdk -- mcp start - Docs
- https://docs.moov.io/guides/developer-tools/mcp-ai/mcp/
Authentication
Moov API key pair (public key + secret/private key)
$ npx -y --package @moovio/sdk -- mcp start --username <public_key> --password <secret_key> + Moov OAuth access token $ npx -y --package @moovio/sdk -- mcp start --access-token <token> discovered In the Moov Dashboard API keys, create a new API key under Developers → API keys. Save both the public key and secret/private key when shown; the secret cannot be viewed again later. Add each allowed browser domain to the key’s allowed domain list if you will use the key to mint browser tokens via POST /oauth2/token. Test and production require separate API keys.
Generate a short-lived access token by calling POST https://api.moov.io/oauth2/token with your Moov API key pair and the scopes your integration needs. For browser-issued tokens, include an Origin or Referer header matching a domain allowed on the API key. See Access tokens and Authentication options.
$ npx -y --package @moovio/sdk -- mcp start --username <public_key> --password <secret_key> $ npx -y --package @moovio/sdk -- mcp start --access-token <token>