M

Moov MCP server

MCP discovered

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
Moov API key pair (public key + secret/private key) compound Get key ↗

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.

Moov OAuth access token jwt Get key ↗

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.

Moov API key pair (public key + secret/private key) compound discovered Get key ↗
$ npx -y --package @moovio/sdk -- mcp start --username <public_key> --password <secret_key>
Moov OAuth access token jwt discovered Get key ↗
$ npx -y --package @moovio/sdk -- mcp start --access-token <token>