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。
{
"mcpServers": {
"rapidapp": {
"command": "npx",
"args": ["-y", "@rapidappio/rapidapp-mcp"],
"env": {
"RAPIDAPP_API_KEY": ""
}
}
}
}
将以下内容添加到您的 claude_desktop_config.json 文件中:
{
"mcpServers": {
"rapidapp": {
"command": "npx",
"args": ["-y", "@rapidappio/rapidapp-mcp"],
"env": {
"RAPIDAPP_API_KEY": ""
}
}
}
}
~/.continue/config.yaml%USERPROFILE%\.continue\config.yamlconfig.jsonexperimental:
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": "" }
}
}
]
}
}
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 。