Rapidapp Mcp

Rapidapp Mcp

🚀 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": ""
}
}
}
}

使用 Claude Desktop 的方法

将以下内容添加到您的 claude_desktop_config.json 文件中:

{
"mcpServers": {
"rapidapp": {
"command": "npx",
"args": ["-y", "@rapidappio/rapidapp-mcp"],
"env": {
"RAPIDAPP_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": "" }

JSON 格式:

{
"experimental": {
"modelContextProtocolServers": [
{
"transport": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@rapidappio/rapidapp-mcp"],
"env": { "RAPIDAPP_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 。

  • 0 关注
  • 0 收藏,11 浏览
  • system 提出于 2025-09-24 10:21

相似服务问题

相关AI产品