Back to MCP directory
publicPublicdnsLocal runtime

pluggy-mcp

Pluggy MCP是一个为Pluggy API设计的MCP服务器,支持通过Cursor进行本地开发配置。

article

README

🚀 Pluggy MCP

Pluggy MCP 是一个用于 Pluggy API 的 MCP 服务器,为相关应用提供稳定的服务支持。

🚀 快速开始

📦 安装指南

在项目根目录下,执行以下命令安装依赖:

npm install

💻 使用示例

开发环境使用(Cursor MCP)

你可以将 Cursor MCP 服务器配置为使用本地运行的此服务器。以下是配置示例:

{
  "servers": {
    "pluggy-mcp": {
      "command": "node",
      "args": [
        "{project_root}/dist/index.js"
      ],
      "env": {
        "PLUGGY_CLIENT_ID": "{your_pluggy_client_id}",
        "PLUGGY_CLIENT_SECRET": "{your_pluggy_client_secret}"
      }
    }
  }
}

若要在 Cursor 中配置 MCP 服务器,可前往 Preferences > MCP Servers,并添加上述服务器配置。

开发更多工具

若要开发更多工具,可在 index.ts 文件中添加更多工具。 使用 npm run watch 命令配置热重载,以便实时查看更改。

发布

目前,此 MCP 服务器尚未发布到 MCP 服务器注册表。

help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client