Back to MCP directory
publicPublicdnsLocal runtime

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

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