← Back to Plugins
MCP Server MCP

io.github.jeff-nasseri/revolut-mcp

github By github 👁 1 views ▲ 0 votes

MCP server for the Revolut Business API: accounts, transactions, payments, FX, and more.

Homepage Verified source GitHub

Install

npx -y @jeff-nasseri/[email protected]

Configuration Example

{
  "remotes": [],
  "packages": [
    {
      "registryType": "npm",
      "identifier": "@jeff-nasseri/revolut-mcp",
      "version": "0.1.6",
      "transport": {
        "type": "stdio"
      },
      "environmentVariables": [
        {
          "description": "Client ID from the Revolut Business portal (Settings -> APIs)",
          "isRequired": true,
          "format": "string",
          "name": "REVOLUT_CLIENT_ID"
        },
        {
          "description": "Path to the PEM private key that signs the client-assertion JWT",
          "format": "string",
          "name": "REVOLUT_PRIVATE_KEY_PATH"
        },
        {
          "description": "PEM contents of the private key (alternative to REVOLUT_PRIVATE_KEY_PATH)",
          "format": "string",
          "isSecret": true,
          "name": "REVOLUT_PRIVATE_KEY"
        },
        {
          "description": "OAuth redirect URI registered with the certificate (default: https://example.com/)",
          "format": "string",
          "name": "REVOLUT_REDIRECT_URI"
        },
        {
          "description": "JWT issuer; defaults to the redirect URI host",
          "format": "string",
          "name": "REVOLUT_JWT_ISS"
        },
        {
          "description": "Where OAuth tokens are persisted (default: ./.tokens.json)",
          "format": "string",
          "name": "TOKEN_STORE_PATH"
        },
        {
          "description": "Target environment: sandbox (default) or production",
          "format": "string",
          "name": "REVOLUT_ENVIRONMENT"
        }
      ]
    }
  ]
}
mcp model-context-protocol npm

Comments

Sign in to leave a comment

Loading comments...