返回市场
快速应用-MCP

快速应用-MCP

作者:rapidappio2 星标更新:2025-04-10

项目介绍

技术文档摘要

<h3 align="center"> <a href="https://rapidapp.io">🏠 首页</a> </h3>

Rapidapp MCP 服务器

这是一个使用 Node.js 实现的 Model Context Protocol (MCP),用于 Rapidapp 的 PostgreSQL 数据库操作。

概述

此 MCP 服务器允许 AI 助手通过 Rapidapp API 进行 PostgreSQL 数据库操作。

使用方法

在 Claude Desktop 或任何 MCP 客户端中,您可以使用自然语言来完成与 Neon 相关的任务,例如:

  • 创建一个名为 'products' 的 Rapidapp PostgreSQL 数据库
  • 列出我所有的 Rapidapp PostgreSQL 数据库
  • 获取 ID 为 '1123456' 的 Rapidapp PostgreSQL 数据库的详细信息
  • 创建一个简单的 Spring Boot 应用程序,用于产品服务的 CRUD 操作。使用 Rapidapp PostgreSQL 数据库 'products' 作为后端,并配置应用程序以连接到数据库。

API 密钥要求

重要提示: 您需要一个 Rapidapp API 密钥才能使用此 MCP 服务器。访问 https://rapidapp.io 注册并获取您的 API 密钥。

安装

使用 Cursor

  1. 导航至 Cursor 设置 > MCP
  2. 添加新的 MCP 服务器,配置如下:
    {
      "mcpServers": {
        "rapidapp": {
          "command": "npx",
          "args": ["-y", "@rapidappio/rapidapp-mcp"],
          "env": {
            "RAPIDAPP_API_KEY": "<your-api-key>"
          }
        }
      }
    }
    

使用 Claude Desktop

在您的 claude_desktop_config.json 中添加以下内容:

{
  "mcpServers": {
    "rapidapp": {
      "command": "npx",
      "args": ["-y", "@rapidappio/rapidapp-mcp"],
      "env": {
        "RAPIDAPP_API_KEY": "<your-api-key>"
      }
    }
  }
}

使用 Continue.dev

  1. 打开您的 Continue.dev 配置文件,可以是以下任意一种格式:

    • YAML 格式:
      • MacOS/Linux: ~/.continue/config.yaml
      • Windows: %USERPROFILE%\.continue\config.yaml
    • JSON 格式:
      • 同上,但命名为 config.json
  2. 使用以下任意一种格式添加配置:

    YAML 格式:

    experimental:
      modelContextProtocolServers:
        - transport:
            type: stdio
            command: node
            args: ["-y", "@rapidappio/rapidapp-mcp"]
            env: { "RAPIDAPP_API_KEY": "<your-api-key>" }
    

    JSON 格式:

    {
      "experimental": {
        "modelContextProtocolServers": [
          {
            "transport": {
              "type": "stdio",
              "command": "npx",
              "args": ["-y", "@rapidappio/rapidapp-mcp"],
              "env": { "RAPIDAPP_API_KEY": "<your-api-key>" }
            }
          }
        ]
      }
    }
    
  3. 保存文件 - Continue 将自动刷新以应用新配置。如果更改没有立即生效,请尝试重启您的 IDE。

通过 Smithery 安装

Smithery 提供了最简单的方式来安装和配置 Rapidapp MCP 跨多个 AI 助手平台。

# Claude
npx -y @smithery/cli@latest install @rapidappio/rapidapp-mcp --client claude

# Cursor
npx -y @smithery/cli@latest install @rapidappio/rapidapp-mcp --client cursor

# Windsurf
npx -y @smithery/cli@latest install @rapidappio/rapidapp-mcp --client windsurf

更多详情及额外集成选项,请访问 https://smithery.ai/server/@rapidappio/rapidapp-mcp