RationalBloks MCP Server
OfficialAllows deployment and management of APIs on Kubernetes clusters, including staging and production environments, scaling, and monitoring.
Provides tools for creating and managing Neo4j graph databases, including nodes, relationships, queries, and full-text search.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@RationalBloks MCP Serverdeploy my task manager API to production"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
RationalBloks MCP Server
Deploy production APIs in minutes. 49 tools for projects, schemas, deployments, object storage, and graph data — delivered on infrastructure you own (self-host or your own BYOC cluster).
What Is This?
RationalBloks MCP lets AI agents (Claude, Cursor, etc.) deploy production APIs from a JSON schema. No backend code to write. No infrastructure to manage.
"Create a task management API with tasks, projects, and users"
→ 2 minutes later: Production API running on KubernetesRelated MCP server: EnrichMCP
Installation
# recommended — no install step, always the latest release
uvx rationalbloks-mcp@latest
# or install into an environment
pip install rationalbloks-mcpQuick Start
1. Get Your API Key
Visit rationalbloks.com/settings and create an API key.
2. Configure Your AI Agent
VS Code - Add to .vscode/mcp.json (Cursor: .cursor/mcp.json with a mcpServers key):
{
"servers": {
"rationalbloks": {
"command": "uvx",
"args": ["rationalbloks-mcp@latest"],
"env": {
"RATIONALBLOKS_API_KEY": "rb_sk_your_key_here"
}
}
}
}Claude Desktop - Add to claude_desktop_config.json:
{
"mcpServers": {
"rationalbloks": {
"command": "uvx",
"args": ["rationalbloks-mcp@latest"],
"env": {
"RATIONALBLOKS_API_KEY": "rb_sk_your_key_here"
}
}
}
}Remote (no install): point any MCP client at https://mcp.rationalbloks.com/mcp (Streamable HTTP) with Authorization: Bearer rb_sk_....
49 Tools
Relational Read Operations (15 tools)
Tool | Description |
| List all your projects |
| Get project details |
| Get current JSON schema |
| Get authenticated user info |
| Check deployment job status |
| A project's jobs, newest first, each with its outcome (kept for the life of the project) |
| Detailed project info with K8s status |
| Git commit history |
| Pre-built schema templates |
| Advanced schema features reference ( |
| Plan and usage limits |
| CPU/memory metrics |
| Object-storage file count and bytes used vs limits |
| List uploaded files (metadata + public URLs) |
| Schema at specific commit |
| List your BYOC resource pools (client-owned clusters) |
Relational Write Operations (7 tools)
Tool | Description |
| Create new project from schema ( |
| Update project schema ( |
| Deploy to staging environment |
| Deploy to production |
| Delete project permanently |
| Rollback to previous version |
| Rename project |
Graph Schema Operations (11 tools)
Tool | Description |
| Get graph project schema |
| Pre-built graph schema templates |
| Graph schema version history |
| Schema at specific version |
| Graph project info with K8s/Neo4j status |
| Create Neo4j graph project |
| Update graph schema |
| Deploy graph to staging |
| Deploy graph to production |
| Delete graph project |
| Rollback graph to previous version |
Graph Data Operations (15 tools)
Tool | Description |
| Create a single node |
| Get node by ID |
| List nodes by entity type |
| Update node properties |
| Delete a node |
| Create a relationship |
| Get node's relationships |
| Delete a relationship |
| Bulk create nodes |
| Bulk create relationships |
| Search nodes by property filters |
| Full-text search across all fields |
| Traverse graph from a node |
| Get graph statistics (counts) |
| Get deployed data schema |
Schema Format
Schemas must be in FLAT format:
{
"tasks": {
"title": {"type": "string", "max_length": 200, "required": true},
"status": {"type": "string", "max_length": 50, "enum": ["pending", "done"]},
"due_date": {"type": "date", "required": false}
},
"projects": {
"name": {"type": "string", "max_length": 100, "required": true}
}
}Field Types
Type | Required Properties |
|
|
| None |
| None |
|
|
| None |
| None |
| None |
| None |
| None |
Auto-Generated Fields
These are automatic - don't define them:
id(UUID primary key)created_at(datetime)updated_at(datetime)
User Authentication
Use the built-in app_users table:
{
"employee_profiles": {
"user_id": {"type": "uuid", "foreign_key": "app_users.id", "required": true},
"department": {"type": "string", "max_length": 100}
}
}Frontend
For frontend development, use our NPM packages:
npm install @rationalbloks/frontblok-auth @rationalbloks/frontblok-crudThese provide:
frontblok-auth: Authentication, login, tokens, user context
frontblok-crud: Generic CRUD via
getApi().getAll(),getApi().create(), etc.
Environment Variables
Variable | Description | Default |
| Your API key (required for stdio; HTTP clients send it as a Bearer token per request) | - |
|
|
|
| Bind address for |
|
| LogicBlok gateway base URL |
|
| Print full tracebacks on startup errors | unset |
Support
Documentation: rationalbloks.com/documentation
Email: support@rationalbloks.com
License
Proprietary - Copyright 2026 RationalBloks. All Rights Reserved.
This server cannot be deployed
Maintenance
Related MCP Connectors
Build, validate, deploy — HTTP APIs, cron jobs, webhooks and MCP tools — from your AI client.
Deploy and manage your apps, databases, storage, and scheduled jobs from your AI agent
- mcp-serverOAuthcom.make
Give your AI agents the tools to build, manage, and run automation workflows.
Verified, pay-per-use API tools for AI agents through one authenticated connection.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables AI agents to deploy and manage applications on Coolify through structured tools, supporting project management, app lifecycle control, pre-configured templates, and deployment monitoring with built-in safety guardrails.140 npm3MIT

EnrichMCPofficial
AlicenseNot gradedqualityCmaintenanceTurns your data model into a semantic layer for AI agents, automatically generating typed, discoverable tools with entity relationships and schema discovery.644Apache 2.0
AppsAI MCP Serverofficial
AlicenseNot gradedqualityDmaintenanceEnables AI agents to build, deploy, and manage full-stack applications on AppsAI's platform, with tools for project management, backend/frontend deployment, billing, marketplace, domains, and more.21 npm1MIT- AlicenseNot gradedqualityAmaintenanceEnables AI agents to interact with any GraphQL API by introspecting the schema and exposing queries and mutations as MCP tools, with built-in pagination, semantic search, and framework adapters.16 npmMIT