这是一个使用 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' 作为后端,并配置应用程序以连接到数据库。重要提示: 您需要一个 Rapidapp API 密钥才能使用此 MCP 服务器。访问 https://rapidapp.io 注册并获取您的 API 密钥。
{
"mcpServers": {
"rapidapp": {
"command": "npx",
"args": ["-y", "@rapidappio/rapidapp-mcp"],
"env": {
"RAPIDAPP_API_KEY": "<your-api-key>"
}
}
}
}
在您的 claude_desktop_config.json 中添加以下内容:
{
"mcpServers": {
"rapidapp": {
"command": "npx",
"args": ["-y", "@rapidappio/rapidapp-mcp"],
"env": {
"RAPIDAPP_API_KEY": "<your-api-key>"
}
}
}
}
打开您的 Continue.dev 配置文件,可以是以下任意一种格式:
~/.continue/config.yaml%USERPROFILE%\.continue\config.yamlconfig.json使用以下任意一种格式添加配置:
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>" }
}
}
]
}
}
保存文件 - Continue 将自动刷新以应用新配置。如果更改没有立即生效,请尝试重启您的 IDE。
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