AgentHubAgentHub

cashfree-mcp

MCP ServerMCP Registry官方收录

io.github.cashfree/cashfree-mcp · v1.0.0

Cashfree MCP server for cashfree docs and APIs

概览

cashfree-mcp 是一个MCP Server,收录自 官方 MCP Registry。支持 stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

选择你的平台查看安装方式

{
  "mcpServers": {
    "cashfree-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@cashfreepayments/cashfree-mcp"
      ],
      "env": {
        "TOOLS": "<TOOLS>",
        "ENV": "<ENV>"
      }
    }
  }
}

环境变量

PAYMENTS_APP_ID可选secret

Payment Gateway App Id

PAYMENTS_APP_SECRET可选secret

Payment Gateway App Secret

PAYOUTS_APP_ID可选secret

Payouts App Id

PAYOUTS_APP_SECRET可选secret

Payouts App Secret

TWO_FA_PUBLIC_KEY_PEM_PATH可选

Path to the PEM file containing the public key for verifying 2FA signatures

SECUREID_APP_ID可选secret

SecureId App Id

SECUREID_APP_SECRET可选secret

SecureId App Secret

TOOLS必填

Tools (Comma-separated list of modules to enable. Available options: pg, payouts, secureid)

ENV必填

Environment (production/sandbox default: sandbox)

相关资源

统一 Manifest

{
  "id": "io.github.cashfree/cashfree-mcp",
  "type": "mcp-server",
  "version": "1.0.0",
  "displayName": "cashfree-mcp",
  "description": "Cashfree MCP server for cashfree docs and APIs",
  "repository": {
    "url": "https://github.com/cashfree/cashfree-mcp",
    "source": "github"
  },
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "@cashfreepayments/cashfree-mcp",
        "version": "1.0.1",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "PAYMENTS_APP_ID",
            "description": "Payment Gateway App Id",
            "isSecret": true
          },
          {
            "name": "PAYMENTS_APP_SECRET",
            "description": "Payment Gateway App Secret",
            "isSecret": true
          },
          {
            "name": "PAYOUTS_APP_ID",
            "description": "Payouts App Id",
            "isSecret": true
          },
          {
            "name": "PAYOUTS_APP_SECRET",
            "description": "Payouts App Secret",
            "isSecret": true
          },
          {
            "name": "TWO_FA_PUBLIC_KEY_PEM_PATH",
            "description": "Path to the PEM file containing the public key for verifying 2FA signatures"
          },
          {
            "name": "SECUREID_APP_ID",
            "description": "SecureId App Id",
            "isSecret": true
          },
          {
            "name": "SECUREID_APP_SECRET",
            "description": "SecureId App Secret",
            "isSecret": true
          },
          {
            "name": "TOOLS",
            "description": "Tools (Comma-separated list of modules to enable. Available options: pg, payouts, secureid)",
            "isRequired": true
          },
          {
            "name": "ENV",
            "description": "Environment (production/sandbox default: sandbox)",
            "isRequired": true
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.cashfree/cashfree-mcp",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.cashfree%2Fcashfree-mcp/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
cashfree-mcp — MCP Server 安装与配置 · AgentHub