返回 MCP 目录
public公开dns本地运行

rapidapp-mcp

Rapidapp MCP Server是一个Node.js服务,实现了Model Context Protocol (MCP),用于通过自然语言操作Rapidapp的PostgreSQL数据库。

article

README

🚀 RapidApp MCP 服务器

RapidApp MCP 服务器是一个基于 Node.js 的服务器,实现了模型上下文协议(MCP),主要用于 Rapidapp 的 PostgreSQL 数据库操作,能让 AI 助手便捷地与数据库交互。

🚀 快速开始

此 MCP 服务器允许 AI 助手通过 Rapidapp API 进行 PostgreSQL 数据库操作,在 Claude Desktop 或任何 MCP 客户端中,您可以使用自然语言完成与 Neon 的交互。

💻 使用示例

基础用法

在 Claude Desktop 或任何 MCP 客户端中,您可以使用如下自然语言指令完成与 Neon 的交互:

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

⚠️ 重要提示

使用此 MCP 服务器需要 Rapidapp API Key。请访问 https://rapidapp.io 注册并获取您的 API Key。

📦 安装指南

使用 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>" }
                }
            }
        ]
    }
}
  1. 保存文件 - Continue 将自动刷新以应用新的配置。如果更改没有立即生效,请尝试重新启动您的 IDE。

使用 Smithery 安装

Smithery 提供最简便的方式在各种 AI 助手平台上安装和配置 Rapidapp MCP。

# 配置 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 。

help

运行方式说明

cloud

托管运行

托管运行通常表示这个 MCP Server 由服务方环境承载,用户一般按页面提供的连接方式或授权流程接入,不需要在本地长期启动一个 MCP 进程

  1. 打开服务方连接页
  2. 完成授权或复制端点
  3. 在 MCP 客户端中连接
terminal

本地运行 / 其它方式

本地运行通常需要用户在自己的电脑或服务器上安装依赖,把 server_config 复制到 MCP 客户端,并按 env_schema 补齐环境变量、密钥或其它配置

  1. 复制 server_config
  2. 安装所需依赖
  3. 补齐环境变量后重启客户端