Rapid Platform MCP Server
Enables agentic LLMs to interact with the Rapid Platform API, supporting list operations, CRUD items, and webhook creation.
README
Rapid Platform MCP Server
An MCP (Model Context Protocol) server that enables agentic LLMs to interact with the Rapid Platform API.
Tools
| Tool | Description |
|---|---|
get_lists |
Get all available lists (tables) |
get_list_views |
Get all views for a specific list |
get_list_schema |
Get the schema (fields/types) for a list |
get_item_schema |
Get the schema for a single item from a list |
get_all_items |
Get items from a list with OData filtering, selection, pagination |
get_item |
Get a specific item by ID |
create_item |
Create a new item in a list |
update_item |
Update an existing item |
create_webhook |
Create a webhook for list events |
Setup
Prerequisites
- Node.js 18+
- A Rapid Platform account with API access
Install and Build
npm install
npm run build
Configuration
Set these environment variables:
| Variable | Required | Description |
|---|---|---|
RAPID_ACCESS_TOKEN |
Yes | OAuth2 Bearer token for authentication |
RAPID_TENANT_ID |
Yes | Your Rapid Platform tenant ID |
RAPID_SITE_ID |
No | Your Rapid Platform site ID |
RAPID_BASE_URL |
No | API base URL (defaults to https://api.rapidplatform.com) |
Usage with Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"rapid-platform": {
"command": "node",
"args": ["/path/to/rapid-platform-mcp-server/dist/index.js"],
"env": {
"RAPID_ACCESS_TOKEN": "your-token-here",
"RAPID_TENANT_ID": "your-tenant-id",
"RAPID_SITE_ID": "your-site-id"
}
}
}
}
Usage with Claude Code
claude mcp add rapid-platform -- node /path/to/rapid-platform-mcp-server/dist/index.js
Set the environment variables in your shell before launching Claude Code, or pass them inline.
Development
npm run dev # Watch mode - recompiles on changes
npm run build # One-time build
npm start # Run the server
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.