← Back to Plugins
MCP Server MCP

io.github.codespar/mcp-braintree

github By github 👁 1 views ▲ 0 votes

MCP server for Braintree (PayPal) — global card processing via GraphQL: charge, refund, vault

Homepage Verified source GitHub

Install

npx -y @codespar/[email protected]

Configuration Example

{
  "remotes": [],
  "packages": [
    {
      "registryType": "npm",
      "identifier": "@codespar/mcp-braintree",
      "version": "0.2.2",
      "transport": {
        "type": "stdio"
      },
      "environmentVariables": [
        {
          "description": "Braintree merchant id (from the Control Panel > API).",
          "isRequired": true,
          "format": "string",
          "name": "BRAINTREE_MERCHANT_ID"
        },
        {
          "description": "Braintree public API key — Basic auth username.",
          "isRequired": true,
          "format": "string",
          "name": "BRAINTREE_PUBLIC_KEY"
        },
        {
          "description": "Braintree private API key — Basic auth password (secret).",
          "isRequired": true,
          "format": "string",
          "isSecret": true,
          "name": "BRAINTREE_PRIVATE_KEY"
        },
        {
          "description": "Braintree environment. 'sandbox' (default, https://payments.sandbox.braintree-api.com/graphql) or 'production' (https://payments.braintree-api.com/graphql).",
          "format": "string",
          "name": "BRAINTREE_ENV"
        },
        {
          "description": "Braintree-Version header value (YYYY-MM-DD). Defaults to 2019-01-01.",
          "format": "string",
          "name": "BRAINTREE_API_VERSION"
        }
      ]
    }
  ]
}
mcp model-context-protocol npm

Comments

Sign in to leave a comment

Loading comments...