Rapidapp MCP Server
About
A Node.js server implementing the Model Context Protocol (MCP) for Rapidapp PostgreSQL database operations. It allows AI assistants to perform PostgreSQL database operations through the Rapidapp API.
Details
- Author
- rapidappio
- Downloads
- 130
- Categories
- Other
Jump to
- Create, list, and inspect Rapidapp PostgreSQL databases
- Generate Spring Boot applications with CRUD operations
- Connect generated applications to Rapidapp databases
- Works with Claude Desktop, Cursor, Continue.dev, and Smithery
- Requires only an API key and Node.js runtime
Setting up with Highlight
This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:
- Download and install Highlight from highlightai.com/download
- Navigate to the plugins tab and select "Add Custom Plugin"
-
Configure the plugin with the settings below
Plugin Name
Rapidapp MCP ServerCommand (node, npx, python, etc.)Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.
- Enable "Start Automatically" if you want the plugin to start when Highlight launches
From the repository
Install and configure the server in MCP clients such as Claude Desktop, Cursor, Continue.dev, or Smithery. You must provide a Rapidapp API key via the RAPIDAPP_API_KEY environment variable. The server is invoked via npx -y @rapidappio/rapidapp-mcp. Natural language commands like Create a new Rapidapp PostgreSQL database called 'products' can then be used.
Claude Desktop / Cursor
Paste into your MCP client config file to install this server.
{
"mcpServers": {
"rapidapp mcp server": {
"rapidapp": {
"command": "npx",
"args": [
"-y",
"@rapidappio/rapidapp-mcp"
],
"env": {
"RAPIDAPP_API_KEY": "<your-api-key>"
}
}
}
}
}
McpServers
{
"rapidapp": {
"command": "npx",
"args": [
"-y",
"@rapidappio/rapidapp-mcp"
],
"env": {
"RAPIDAPP_API_KEY": "<your-api-key>"
}
}
}
Rapidapp MCP Server
A Node.js server implementing Model Context Protocol (MCP) for Rapidapp PostgreSQL database operations.
Overview
This MCP server allows AI assistants to do PostgreSQL database operation through the Rapidapp API.
How to Use
In Claude Desktop, or any MCP Client, you can use natural language to accomplish things with Neon, such as:
- Create a new Rapidapp PostgreSQL database called 'products'
- List all my Rapidapp PostgreSQL databases
- Get details of my Rapidapp PostgreSQL database with id of '123456'
- Create a Spring Boot application for simple product service with CRUD operations. Use the Rapidapp PostgreSQL database 'products' as the backend. Configure the application to connect to the database.
API Key Requirement
Important: You need a Rapidapp API key to use this MCP server. Visit https://rapidapp.io to sign up and obtain your API key.
Installation
Usage with Cursor
1. Navigate to Cursor Settings > MCP
2. Add new MCP server with the following configuration:
{
"mcpServers": {
"rapidapp": {
"command": "npx",
"args": ["-y", "@rapidappio/rapidapp-mcp"],
"env": {
"RAPIDAPP_API_KEY": "<your-api-key>"
}
}
}
}
Usage with Claude Desktop
Add this to your claude_desktop_config.json:
{
"mcpServers": {
"rapidapp": {
"command": "npx",
"args": ["-y", "@rapidappio/rapidapp-mcp"],
"env": {
"RAPIDAPP_API_KEY": "<your-api-key>"
}
}
}
}
Usage with Continue.dev
1. Open your Continue.dev configuration file in either format:
- YAML:
- MacOS/Linux: ~/.continue/config.yaml
- Windows: %USERPROFILE%\.continue\config.yaml
- JSON:
- Same location as above, but named config.json
2. Add the configuration using either format:
YAML format:
experimental:
modelContextProtocolServers:
- transport:
type: stdio
command: node
args: ["-y", "@rapidappio/rapidapp-mcp"]
env: { "RAPIDAPP_API_KEY": "<your-api-key>" }
JSON format:
{
"experimental": {
"modelContextProtocolServers": [
{
"transport": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@rapidappio/rapidapp-mcp"],
"env": { "RAPIDAPP_API_KEY": "<your-api-key>" }
}
}
]
}
}
3. Save the file - Continue will automatically refresh to apply the new configuration. If the changes don't take effect immediately, try restarting your IDE.
Installing via Smithery
Smithery provides the easiest way to install and configure the Rapidapp MCP across various AI assistant platforms.
```
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.



