{"name":"com.rationalbloks/mcp","slug":"rationalbloks-mcp","title":"RationalBloks","description":"Deploy production REST and Neo4j Graph APIs from JSON schemas in seconds. 49 tools.","url":"https://mcp.market/server/rationalbloks-mcp","rating":null,"grade":"B","score":83,"certified":false,"status":"active","category":"devtools","tags":["devtools"],"presence":{"score":23,"stars":1,"forks":0,"downloads_week":null,"last_push_at":"2026-09-18T15:17:57.000Z","license":"NOASSERTION"},"uptime":{"percent":100,"checks":1,"ok":1,"last_checked_at":"2026-09-19T16:05:47.621Z","last_ok_at":"2026-09-19T16:05:47.621Z","latency_ms":1072},"claimed":false,"transport":"mixed","callable_via_gateway":true,"default_price_micros":0,"repository":"https://github.com/rationalbloks/rationalbloks-mcp","website":null,"version":"0.14.0","remotes":[{"type":"streamable-http","url":"https://mcp.rationalbloks.com/"}],"packages":[{"registryType":"pypi","identifier":"rationalbloks-mcp","version":"0.14.0","transport":{"type":"stdio"},"environmentVariables":[{"description":"Your RationalBloks API key (get it from rationalbloks.com/settings)","isRequired":true,"format":"string","isSecret":true,"name":"RATIONALBLOKS_API_KEY"}]}],"tools":[{"name":"bulk_create_graph_nodes","description":"Create multiple nodes at once (up to 500 per call). Uses Neo4j UNWIND for high performance.\n\nEssential for knowledge graph population — create hundreds of entities from a single book chapter or article.\n\nEach node needs: entity_id (unique string) and data (properties dict).\n\nExample:\n  entity_type: \"concept\"\n  nodes: [\n    {\"entity_id\": \"quantum-mechanics-001\", \"data\": {\"name\": \"Quantum Mechanics\", \"field\": \"Physics\"}},\n    {\"entity_id\": \"wave-function-001\", \"data\": {\"name\": \"Wave Function\", \"field\": \"Physics\"}},\n    {\"entity_id\": \"superposition-001\", \"data\": {\"name\": \"Superposition\", \"field\": \"Physics\"}}\n  ]","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"project_id":{"type":"string","description":"Project ID (UUID)"},"entity_type":{"type":"string","description":"Entity key for all nodes"},"nodes":{"type":"array","description":"List of nodes. Each: {entity_id: string, data: {properties}}","items":{"type":"object","properties":{"entity_id":{"type":"string"},"data":{"type":"object"}},"required":["entity_id","data"]}},"environment":{"type":"string","description":"Environment: staging or production (default: staging)"}},"required":["project_id","entity_type","nodes"]}},{"name":"bulk_create_graph_relationships","description":"Create multiple relationships at once (up to 500 per call). Uses Neo4j UNWIND for high performance.\n\nEssential for connecting knowledge — link hundreds of concepts, people, and events in one operation.\n\nEach relationship needs: from_id, to_id, and optional data (properties).\n\nExample:\n  rel_type: \"related_to\"\n  relationships: [\n    {\"from_id\": \"quantum-mechanics-001\", \"to_id\": \"wave-function-001\", \"data\": {\"strength\": \"strong\"}},\n    {\"from_id\": \"quantum-mechanics-001\", \"to_id\": \"superposition-001\", \"data\": {\"strength\": \"strong\"}}\n  ]","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"project_id":{"type":"string","description":"Project ID (UUID)"},"rel_type":{"type":"string","description":"Relationship key for all relationships"},"relationships":{"type":"array","description":"List of relationships. Each: {from_id, to_id, data?}","items":{"type":"object","properties":{"from_id":{"type":"string"},"to_id":{"type":"string"},"data":{"type":"object"}},"required":["from_id","to_id"]}},"environment":{"type":"string","description":"Environment: staging or production (default: staging)"}},"required":["project_id","rel_type","relationships"]}},{"name":"create_graph_node","description":"Create a single node in a deployed graph project.\n\nREQUIRES: Project must be deployed (use deploy_graph_staging first).\n\nThe entity_type must match an entity key from the project schema.\nUse get_graph_data_schema to see available entity types and their fields.\n\nExample:\n  entity_type: \"person\"\n  entity_id: \"alan-turing-001\"\n  data: {\"name\": \"Alan Turing\", \"birth_year\": 1912, \"field\": \"Computer Science\"}\n\nThe entity_id is your unique identifier — use meaningful IDs for knowledge graphs.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"project_id":{"type":"string","description":"Project ID (UUID)"},"entity_type":{"type":"string","description":"Entity key (e.g., 'person', 'concept')"},"entity_id":{"type":"string","description":"Unique identifier for the node"},"data":{"type":"object","description":"Node properties matching the entity schema"},"environment":{"type":"string","description":"Environment: staging or production (default: staging)"}},"required":["project_id","entity_type","entity_id","data"]}},{"name":"create_graph_project","description":"Create a new Neo4j graph database project from a hierarchical JSON schema.\n\n⚠️ GRAPH SCHEMA FORMAT — READ BEFORE CREATING:\n\nGraph schemas define nodes (entities) and relationships, NOT flat database tables.\nEach field is a dict with \"type\" and optional \"required\": true (defaults to false).\n\nSCHEMA STRUCTURE:\n{\n  \"nodes\": {\n    \"EntityName\": {\n      \"description\": \"What this entity represents\",\n      \"flat_labels\": [\"AdditionalLabel\"],\n      \"schema\": {\n        \"field_name\": {\"type\": \"string\", \"required\": true},\n        \"other_field\": {\"type\": \"integer\"}\n      }\n    }\n  },\n  \"relationships\": {\n    \"RELATIONSHIP_TYPE\": {\n      \"from\": \"EntityName\",\n      \"to\": \"OtherEntity\",\n      \"cardinality\": \"MANY_TO_MANY\",\n      \"data_schema\": {\n        \"field_name\": {\"type\": \"date\"}\n      }\n    }\n  }\n}\n\nFIELD TYPES: string, integer, float, boolean, date, json\n\nCARDINALITY OPTIONS: ONE_TO_ONE, ONE_TO_MANY, MANY_TO_ONE, MANY_TO_MANY\n\nHIERARCHICAL NODES:\nNest entities inside parent entities to create type hierarchies.\nChild entities inherit parent labels automatically.\n\nExample:\n{\n  \"nodes\": {\n    \"Animal\": {\n      \"description\": \"Base animal entity\",\n      \"flat_labels\": [\"LivingThing\"],\n      \"schema\": {\n        \"name\": {\"type\": \"string\", \"required\": true},\n        \"habitat\": {\"type\": \"string\"}\n      },\n      \"Dog\": {\n        \"description\": \"A dog (inherits Animal labels)\",\n        \"flat_labels\": [\"Pet\"],\n        \"schema\": {\n          \"breed\": {\"type\": \"string\", \"required\": true},\n          \"trained\": {\"type\": \"boolean\"}\n        }\n      }\n    }\n  },\n  \"relationships\": {\n    \"OWNS\": {\n      \"from\": \"Person\",\n      \"to\": \"Animal\",\n      \"cardinality\": \"ONE_TO_MANY\"\n    }\n  }\n}\n\nRULES:\n1. \"nodes\" key is REQUIRED — must contain at least one entity\n2. Each entity needs \"description\" and \"schema\" with field definitions\n3. Each field is {\"type\": \"...\", \"required\": true/false} — required defaults to false\n4. Relationship \"from\"/\"to\" must reference defined node names\n5. Relationship types should be UPPER_SNAKE_CASE\n6. Entity names should be PascalCase\n7. Automatic fields (id, created_at, updated_at) are NOT needed\n8. Use get_graph_template_schemas FIRST to see valid examples\n\nWORKFLOW:\n1. Use get_graph_template_schemas to see valid examples\n2. Create schema following the rules above\n3. Call this tool\n4. Monitor with get_job_status (2-5 min deployment)\n\nAfter creation, use get_job_status with returned job_id to monitor deployment. While RationalBloks is being updated, the call is refused with 'RationalBloks is being updated': call it again in a few minutes.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"name":{"type":"string","description":"Project name"},"schema":{"type":"object","description":"Graph schema with 'nodes' and optionally 'relationships' keys. Use get_graph_template_schemas to see valid examples."},"cluster_id":{"type":"string","description":"REQUIRED — BYOC resource pool ID (from list_clusters) to deploy this graph project onto your own cluster. Owned hosting is retired: a project we operate must run on your own infrastructure. Register a pool via the Resource Pools UI first, then pass its id here."}},"required":["name","schema","cluster_id"]}},{"name":"create_graph_relationship","description":"Create a relationship between two nodes in a deployed graph project.\n\nThe rel_type must match a relationship key from the project schema.\nUse get_graph_data_schema to see available relationship types.\n\nExample:\n  rel_type: \"authored\"\n  from_id: \"alan-turing-001\"\n  to_id: \"on-computable-numbers-001\"\n  data: {\"year\": 1936}\n\nThe from_id and to_id must be entity_ids of existing nodes.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"project_id":{"type":"string","description":"Project ID (UUID)"},"rel_type":{"type":"string","description":"Relationship key (e.g., 'authored', 'related_to')"},"from_id":{"type":"string","description":"Source node entity_id"},"to_id":{"type":"string","description":"Target node entity_id"},"data":{"type":"object","description":"Relationship properties (optional)"},"environment":{"type":"string","description":"Environment: staging or production (default: staging)"}},"required":["project_id","rel_type","from_id","to_id"]}},{"name":"create_project","description":"Create a new RationalBloks project from a JSON schema.\n\n⚠️ CRITICAL RULES - READ BEFORE CREATING SCHEMA:\n\n1. FLAT FORMAT (REQUIRED):\n   ✅ CORRECT: {users: {email: {type: \"string\", max_length: 255}}}\n   ❌ WRONG: {users: {fields: {email: {type: \"string\"}}}}\n   DO NOT nest under 'fields' key!\n\n2. FIELD TYPE REQUIREMENTS:\n   • string: MUST have \"max_length\" (e.g., max_length: 255)\n   • decimal: MUST have \"precision\" and \"scale\" (e.g., precision: 10, scale: 2)\n   • datetime: Use \"datetime\" NOT \"timestamp\"\n   • ALL fields: MUST have \"type\" property\n\n3. AUTOMATIC FIELDS (DON'T define):\n   • id (uuid, primary key)\n   • created_at (datetime)\n   • updated_at (datetime)\n\n4. USER AUTHENTICATION:\n   ❌ NEVER create \"users\", \"customers\", \"employees\" tables with email/password\n   ✅ USE built-in app_users table\n\n   Example:\n   {\n     \"employee_profiles\": {\n       \"user_id\": {type: \"uuid\", foreign_key: \"app_users.id\", required: true},\n       \"department\": {type: \"string\", max_length: 100}\n     }\n   }\n\n5. AUTHORIZATION:\n   Add user_id → app_users.id to enable \"only see your own data\"\n\n   Example:\n   {\n     \"orders\": {\n       \"user_id\": {type: \"uuid\", foreign_key: \"app_users.id\"},\n       \"total\": {type: \"decimal\", precision: 10, scale: 2}\n     }\n   }\n\n6. FIELD OPTIONS:\n   • required: true/false\n   • unique: true/false\n   • default: any value\n   • enum: [\"val1\", \"val2\"]\n   • foreign_key: \"table.id\"\n\nAVAILABLE TYPES: string, text, integer, decimal, boolean, uuid, date, datetime, json, uuid_array, integer_array, text_array, float_array\n\n   Array types store PostgreSQL native arrays with automatic GIN indexing:\n   • uuid_array: UUID[] — for sets of references (e.g., tensor coordinates)\n   • integer_array: BIGINT[] — for dimension indices, integer sets\n   • text_array: TEXT[] — for tags, categories, label sets\n   • float_array: DOUBLE PRECISION[] — for weight vectors, scores\n   GIN-indexed operators: @> (contains), <@ (contained_by), && (overlaps)\n\nBACKEND ENGINE:\n• python (default): FastAPI backend — mature, full-featured\n• rust: Axum backend — faster cold starts, lower memory, high performance\n\nWORKFLOW:\n1. Use get_template_schemas FIRST to see valid examples\n2. Create schema following ALL rules above\n3. Call this tool (optionally choose backend_type: \"python\" or \"rust\")\n4. Monitor with get_job_status (2-5 min deployment)\n\nAfter creation, use get_job_status with returned job_id to monitor deployment. While RationalBloks is being updated, the call is refused with 'RationalBloks is being updated': call it again in a few minutes.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"name":{"type":"string","description":"Project name"},"schema":{"type":"object","description":"JSON schema in FLAT format (table_name → field_name → properties). Every field MUST have a 'type' property. Use get_template_schemas to see valid examples."},"backend_type":{"type":"string","enum":["python","rust"],"description":"Backend engine: 'python' (FastAPI, default) or 'rust' (Axum, faster). Default: python"},"cluster_id":{"type":"string","description":"REQUIRED — BYOC resource pool ID (from list_clusters) to deploy this project onto your own cluster. Owned hosting is retired: a project we operate must run on your own infrastructure. Register a pool via the Resource Pools UI first, then pass its id here."}},"required":["name","schema","cluster_id"]}},{"name":"delete_graph_node","description":"Delete a node and all its relationships from a deployed graph project. ⚠️ This also removes all relationships connected to this node (DETACH DELETE).","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"project_id":{"type":"string","description":"Project ID (UUID)"},"entity_type":{"type":"string","description":"Entity key (e.g., 'person', 'concept')"},"entity_id":{"type":"string","description":"The node's entity_id"},"environment":{"type":"string","description":"Environment: staging or production (default: staging)"}},"required":["project_id","entity_type","entity_id"]}},{"name":"delete_graph_project","description":"Delete a graph project (removes GitHub repo, K8s deployments, Neo4j database, and credentials). It runs as a job: poll the returned job_id with get_job_status until it is completed. One operation runs on a project at a time: while another runs, the call is refused and the refusal names the running job; wait for it with get_job_status, then call again. While RationalBloks is being updated, the call is refused with 'RationalBloks is being updated': call it again in a few minutes.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"project_id":{"type":"string","description":"Project ID (UUID)"}},"required":["project_id"]}},{"name":"delete_graph_relationship","description":"Delete a specific relationship by its internal ID. Use get_node_relationships to find relationship IDs.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"project_id":{"type":"string","description":"Project ID (UUID)"},"rel_type":{"type":"string","description":"Relationship key"},"rel_id":{"type":"integer","description":"Internal relationship ID (from get_node_relationships)"},"environment":{"type":"string","description":"Environment: staging or production (default: staging)"}},"required":["project_id","rel_type","rel_id"]}},{"name":"delete_project","description":"Delete a project (removes GitHub repo, K8s deployments, and database). It runs as a job: poll the returned job_id with get_job_status until it is completed. One operation runs on a project at a time: while another runs, the call is refused and the refusal names the running job; wait for it with get_job_status, then call again. While RationalBloks is being updated, the call is refused with 'RationalBloks is being updated': call it again in a few minutes.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"project_id":{"type":"string","description":"Project ID (UUID)"}},"required":["project_id"]}},{"name":"deploy_graph_production","description":"Promote graph staging to production. Creates a separate production Neo4j instance with its own credentials and database. Requires paid plan. A deploy that drops data is refused until you pass confirm_destructive=true after reviewing the plan. One operation runs on a project at a time: while another runs, the call is refused and the refusal names the running job; wait for it with get_job_status, then call again. While RationalBloks is being updated, the call is refused with 'RationalBloks is being updated': call it again in a few minutes.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"project_id":{"type":"string","description":"Project ID (UUID)"},"confirm_destructive":{"type":"boolean","description":"Set true only after reviewing the plan: a deploy that drops tables, columns, entities, relationships or fields is refused without it"}},"required":["project_id"]}},{"name":"deploy_graph_staging","description":"Deploy a graph project to the staging environment. This triggers: (1) Schema validation, (2) Neo4j entity code generation, (3) Docker image build, (4) GitHub commit, (5) Kubernetes deployment with Neo4j instance. The operation is ASYNCHRONOUS — returns immediately with a job_id. Use get_job_status to monitor progress. Deployment typically takes 2-5 minutes. Use get_graph_project_info to verify deployment succeeded. A deploy that drops data is refused until you pass confirm_destructive=true after reviewing the plan. One operation runs on a project at a time: while another runs, the call is refused and the refusal names the running job; wait for it with get_job_status, then call again. While RationalBloks is being updated, the call is refused with 'RationalBloks is being updated': call it again in a few minutes.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"project_id":{"type":"string","description":"Project ID (UUID)"},"confirm_destructive":{"type":"boolean","description":"Set true only after reviewing the plan: a deploy that drops tables, columns, entities, relationships or fields is refused without it"}},"required":["project_id"]}},{"name":"deploy_production","description":"Promote staging to production (requires paid plan) A deploy that drops data is refused until you pass confirm_destructive=true after reviewing the plan. One operation runs on a project at a time: while another runs, the call is refused and the refusal names the running job; wait for it with get_job_status, then call again. While RationalBloks is being updated, the call is refused with 'RationalBloks is being updated': call it again in a few minutes.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"project_id":{"type":"string","description":"Project ID (UUID)"},"confirm_destructive":{"type":"boolean","description":"Set true only after reviewing the plan: a deploy that drops tables, columns, entities, relationships or fields is refused without it"}},"required":["project_id"]}},{"name":"deploy_staging","description":"Deploy a project to the staging environment. This triggers: (1) Schema validation, (2) Docker image build, (3) GitHub commit, (4) Kubernetes deployment, (5) Database migrations. The operation is ASYNCHRONOUS - it returns immediately with a job_id. Use get_job_status with the job_id to monitor progress. Deployment typically takes 2-5 minutes depending on schema complexity. If deployment fails, read the job's error first: one that starts with 'RationalBloks platform error' is the platform's, not the schema's. Otherwise check: (1) Schema format is FLAT (no 'fields' nesting), (2) Every field has a 'type' property, (3) Foreign keys reference existing tables, (4) No PostgreSQL reserved words in table/field names. Use get_project_info to see if the deployment succeeded. A deploy that drops data is refused until you pass confirm_destructive=true after reviewing the plan. One operation runs on a project at a time: while another runs, the call is refused and the refusal names the running job; wait for it with get_job_status, then call again. While RationalBloks is being updated, the call is refused with 'RationalBloks is being updated': call it again in a few minutes.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"project_id":{"type":"string","description":"Project ID (UUID)"},"confirm_destructive":{"type":"boolean","description":"Set true only after reviewing the plan: a deploy that drops tables, columns, entities, relationships or fields is refused without it"}},"required":["project_id"]}},{"name":"fulltext_search_graph","description":"Search across ALL string properties of ALL nodes in a deployed graph using free-text queries.\n\nUnlike search_graph_nodes (which filters by specific property), this searches every text field at once.\nPerfect for finding knowledge when you don't know which property contains the answer.\n\nExample: query \"quantum\" searches name, description, summary, notes, and all other string fields.\nReturns nodes with _match_fields showing which properties matched.\n\nOptionally filter by entity_type to narrow results.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"project_id":{"type":"string","description":"Project ID (UUID)"},"query":{"type":"string","description":"Search text (case-insensitive, min 2 chars)"},"entity_type":{"type":"string","description":"Entity key to filter by (optional — omit to search all types)"},"limit":{"type":"integer","description":"Max results (default: 50, max: 500)"},"offset":{"type":"integer","description":"Pagination offset (default: 0)"},"environment":{"type":"string","description":"Environment: staging or production (default: staging)"}},"required":["project_id","query"]}},{"name":"get_graph_data_schema","description":"Get the runtime schema of a DEPLOYED graph project — shows the actual entity types and relationship types available for data operations.\n\nReturns: Available entity keys (for create_graph_node, list_graph_nodes, etc.) and relationship keys (for create_graph_relationship, etc.).\n\n⭐ USE THIS FIRST before creating nodes/relationships to know what entity_type and rel_type values are valid.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"project_id":{"type":"string","description":"Project ID (UUID)"},"environment":{"type":"string","description":"Environment: staging or production (default: staging)"}},"required":["project_id"]}},{"name":"get_graph_node","description":"Get a specific node by its entity_id from a deployed graph project. Returns all node properties including created_at and updated_at timestamps.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"project_id":{"type":"string","description":"Project ID (UUID)"},"entity_type":{"type":"string","description":"Entity key (e.g., 'person', 'concept')"},"entity_id":{"type":"string","description":"The node's entity_id"},"environment":{"type":"string","description":"Environment: staging or production (default: staging)"}},"required":["project_id","entity_type","entity_id"]}},{"name":"get_graph_project_info","description":"Get detailed graph project information including Kubernetes deployment status, Neo4j database health, pod status, and resource usage. Use this after deployment to verify the graph project is running correctly.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"project_id":{"type":"string","description":"Project ID (UUID)"}},"required":["project_id"]}},{"name":"get_graph_schema","description":"Get the graph schema definition of a project. Returns the hierarchical schema with nodes (entities) and relationships. Graph schemas define entity hierarchies and typed relationships — a different format than relational flat-table schemas. The response also says whether this saved schema is the deployed one: saved_schema_deployed is true when the last deploy applied it, false when it was saved after the last deploy (undeployed_changes then lists what deploying it would change), and null when no deployed schema is on record.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"project_id":{"type":"string","description":"Project ID (UUID)"}},"required":["project_id"]}},{"name":"get_graph_schema_at_version","description":"Get the graph schema as it existed at a specific version/commit. Use get_graph_version_history to find commit SHAs. Useful for comparing schemas across versions or auditing changes.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"project_id":{"type":"string","description":"Project ID (UUID)"},"version":{"type":"string","description":"Commit SHA of the version to retrieve"}},"required":["project_id","version"]}},{"name":"get_graph_statistics","description":"Get statistics about a deployed graph: total node count, total relationship count, counts per entity type, counts per relationship type. Essential for understanding the current state of a knowledge graph before adding more data.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"project_id":{"type":"string","description":"Project ID (UUID)"},"environment":{"type":"string","description":"Environment: staging or production (default: staging)"}},"required":["project_id"]}},{"name":"get_graph_template_schemas","description":"Get pre-built graph template schemas for common use cases. ⭐ USE THIS FIRST when creating a new graph project! Templates show the CORRECT graph schema format with: proper node definitions (description, flat_labels, schema with flat field definitions), relationship configurations (from, to, cardinality, data_schema), and hierarchical entity nesting. Available templates: Start from Scratch (hierarchy, flat labels, every field type), Social Network (people, organizations, content, follows), Knowledge Graph (topic hierarchy, articles, authors, concepts), Product Catalog (products, categories, suppliers, reviews). Each entry's 'schema' goes to create_graph_project as is or adapted. TIP: Study these templates to understand the correct graph schema format before creating custom schemas.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{},"required":[]}},{"name":"get_graph_version_history","description":"Get the deployment and version history for a graph project. Shows all schema changes with commit SHAs, timestamps, version numbers, and messages. Use this to find a specific version for rollback operations.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"project_id":{"type":"string","description":"Project ID (UUID)"}},"required":["project_id"]}},{"name":"get_job_status","description":"Check the status of a job (a create, deploy, promotion, rollback or deletion). STATUS VALUES: pending (queued), processing (in progress), completed (success), failed. Call it until the status is completed or failed: every job ends, since a job whose server stopped is failed within about three minutes, and a deploy can take up to 15 minutes. If status is 'failed', read failure_side and error: 'customer' means the project's input is proven the cause (an invalid schema, data the new schema does not fit, a change the resource pool cannot hold), and error says what to change; 'platform' means no input of the project is known to cause it: report it to RationalBloks rather than changing the schema.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"job_id":{"type":"string","description":"Job ID returned from deployment operations"}},"required":["job_id"]}},{"name":"get_node_relationships","description":"Get all relationships connected to a specific node. Supports direction filtering (incoming, outgoing, both) and relationship type filtering.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"project_id":{"type":"string","description":"Project ID (UUID)"},"entity_type":{"type":"string","description":"Entity key of the node"},"entity_id":{"type":"string","description":"The node's entity_id"},"direction":{"type":"string","description":"Filter: incoming, outgoing, or both (default: both)"},"rel_type_filter":{"type":"string","description":"Filter by relationship type (UPPER_SNAKE_CASE)"},"environment":{"type":"string","description":"Environment: staging or production (default: staging)"}},"required":["project_id","entity_type","entity_id"]}},{"name":"get_project","description":"Get detailed information about a specific project","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"project_id":{"type":"string","description":"Project ID (UUID)"}},"required":["project_id"]}},{"name":"get_project_info","description":"Get detailed project info including deployment status and resource usage. DEPLOYMENT STATUS: Running (healthy), Pending (starting), CrashLoopBackOff (init container failed - usually schema format error), ImagePullBackOff (image build failed). TROUBLESHOOTING: If status is CrashLoopBackOff, the schema is likely in wrong format (nested 'fields' key or missing 'type' properties). Use get_schema to review current schema. If replicas show 0/2, the init container (migration runner) is failing. This is almost always a schema format issue. RETURNS THE LIVE API URL: staging.url and production.url carry the deployed base URL for each environment (append /docs for the interactive OpenAPI docs); github.url is the generated repository. create_project does NOT return a URL, so this is the tool to call once get_job_status reports the deployment finished.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"project_id":{"type":"string","description":"Project ID (UUID)"}},"required":["project_id"]}},{"name":"get_project_storage_usage","description":"Get object-storage usage for a project: file count and bytes used against the plan limits.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"project_id":{"type":"string","description":"Project ID (UUID)"},"environment":{"type":"string","description":"Environment: staging or production (default: production)"}},"required":["project_id"]}},{"name":"get_project_usage","description":"Get resource usage metrics (CPU, memory) for a project","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"project_id":{"type":"string","description":"Project ID (UUID)"}},"required":["project_id"]}},{"name":"get_schema","description":"Get the JSON schema definition of a project in FLAT format. Returns the schema structure where each table name maps directly to field definitions. This is the same format required for create_project and update_schema. USE CASES: Review current schema before making updates, copy schema as template for new projects, verify schema structure after deployment, learn the correct schema format by example. The returned schema will be in FLAT format: {table_name: {field_name: {type, properties}}}. The response also says whether this saved schema is the deployed one: saved_schema_deployed is true when the last deploy applied it, false when it was saved after the last deploy (undeployed_changes then lists what deploying it would change), and null when no deployed schema is on record.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"project_id":{"type":"string","description":"Project ID (UUID)"}},"required":["project_id"]}},{"name":"get_schema_at_version","description":"Get the schema as it was at a specific version/commit","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"project_id":{"type":"string","description":"Project ID (UUID)"},"version":{"type":"string","description":"Commit SHA of the version"}},"required":["project_id","version"]}},{"name":"get_schema_reference","description":"Get the reference for ADVANCED schema features the templates do not show — read this before adding authorization or derived fields to a schema. Covers: __policy__ (relationship-based read/write authorization with single- and multi-hop membership paths, and the rules that decide whether adopting it is safe — it replaces creator-ownership per table and fails closed on a null link), computed columns (read-only values derived from other columns), __constraints__ (composite uniqueness), __audit__ (append-only audit log), __admin_write__ (a table only admins write), and how user foreign keys are attributed on create.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{},"required":[]}},{"name":"get_subscription_status","description":"Get your subscription tier, limits, and usage","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{},"required":[]}},{"name":"get_template_schemas","description":"Get pre-built template schemas for common use cases. ⭐ USE THIS FIRST when creating a new project! Templates show the CORRECT schema format with: proper FLAT structure (no 'fields' nesting), every field has a 'type' property, foreign key relationships configured correctly, best practices for field naming and types. Available templates: Start from Scratch (every field type), Team Collaboration (workspaces, channels, messages, tasks), E-Commerce Store (customer profiles, products, orders and their line items, reviews, shipments). Each entry's 'schema' goes to create_project as is or adapted; its 'tables' notes say how each table is authorized. TIP: Study these templates to understand the correct schema format before creating custom schemas.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{},"required":[]}},{"name":"get_user_info","description":"Get information about the authenticated user","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{},"required":[]}},{"name":"get_version_history","description":"Get the deployment and version history (git commits) for a project. Shows all schema changes with commit SHA, timestamp, and message. USE CASES: Review what changed between deployments, find the last working version before issues started, get commit SHA for rollback_project.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"project_id":{"type":"string","description":"Project ID (UUID)"}},"required":["project_id"]}},{"name":"list_clusters","description":"List your registered BYOC resource pools (client-owned Kubernetes clusters). Each returned cluster has an 'id' you MUST pass as create_project's cluster_id to deploy a project onto your own infrastructure — owned hosting is retired, so every project we operate runs on your own cluster. Registering a pool is a UI action (create a bare Ubuntu box, authorise the key we generate, then we provision it into a cluster automatically) — this tool only lists pools you already registered, it never handles cluster credentials.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{},"required":[]}},{"name":"list_graph_nodes","description":"List nodes of a specific entity type from a deployed graph project. Supports pagination with limit/offset. Returns nodes ordered by creation date (newest first).","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"project_id":{"type":"string","description":"Project ID (UUID)"},"entity_type":{"type":"string","description":"Entity key (e.g., 'person', 'concept')"},"limit":{"type":"integer","description":"Max results (default: 100, max: 1000)"},"offset":{"type":"integer","description":"Pagination offset (default: 0)"},"environment":{"type":"string","description":"Environment: staging or production (default: staging)"}},"required":["project_id","entity_type"]}},{"name":"list_project_files","description":"List a project's uploaded files (metadata + public URLs), most recent first. Inspection only — files are not streamed through MCP.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"project_id":{"type":"string","description":"Project ID (UUID)"},"environment":{"type":"string","description":"Environment: staging or production (default: production)"},"limit":{"type":"integer","description":"Max files to return (1-1000, default 100)"},"offset":{"type":"integer","description":"Pagination offset (default 0)"}},"required":["project_id"]}},{"name":"list_project_jobs","description":"List a project's jobs, newest first: every create, deploy, promotion, rollback, resource change and module operation, each with its status, error, failure_side and when it started and ended. A job's record is kept for the life of the project, so this is how to find out what an operation did when you no longer have its job_id (after an interruption, or in a later session): the first job of the job_type you want is the latest. Read older jobs a page at a time with offset; a page shorter than limit is the last.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"project_id":{"type":"string","description":"Project ID (UUID)"},"limit":{"type":"integer","description":"Max jobs to return (1-1000, default 100)"},"offset":{"type":"integer","description":"Jobs to skip, newest first (default 0)"}},"required":["project_id"]}},{"name":"list_projects","description":"List all your RationalBloks projects with their status and URLs","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{},"required":[]}},{"name":"rename_project","description":"Rename a project (changes display name, not project_code)","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"project_id":{"type":"string","description":"Project ID (UUID)"},"name":{"type":"string","description":"New display name for the project"}},"required":["project_id","name"]}},{"name":"rollback_graph_project","description":"Rollback a graph project to a previous version. ⚠️ WARNING: This reverts schema AND code to the specified commit. Neo4j data is NOT rolled back. Use get_graph_version_history to find the commit SHA of the version you want to rollback to. After rollback, the graph API will be redeployed with the old schema. One operation runs on a project at a time: while another runs, the call is refused and the refusal names the running job; wait for it with get_job_status, then call again. While RationalBloks is being updated, the call is refused with 'RationalBloks is being updated': call it again in a few minutes.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"project_id":{"type":"string","description":"Project ID (UUID)"},"version":{"type":"string","description":"Commit SHA to rollback to"},"environment":{"type":"string","description":"Environment: staging or production (default: staging)"}},"required":["project_id","version"]}},{"name":"rollback_project","description":"Rollback a project to a previous version. ⚠️ WARNING: This reverts schema AND code to the specified commit. Database data is NOT rolled back. Use get_version_history to find the commit SHA of the version you want to rollback to. After rollback, use get_job_status to monitor the redeployment. Rollback is useful when a schema change breaks deployment. One operation runs on a project at a time: while another runs, the call is refused and the refusal names the running job; wait for it with get_job_status, then call again. While RationalBloks is being updated, the call is refused with 'RationalBloks is being updated': call it again in a few minutes.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"project_id":{"type":"string","description":"Project ID (UUID)"},"version":{"type":"string","description":"Commit SHA or version to rollback to"},"environment":{"type":"string","description":"Environment: staging or production (default: staging)"}},"required":["project_id","version"]}},{"name":"search_graph_nodes","description":"Search for nodes by property values in a deployed graph project.\n\nSupports exact match and contains search (prefix value with ~ for contains).\n\nExamples:\n  Exact: filters: {\"name\": \"Alan Turing\"}\n  Contains: filters: {\"name\": \"~turing\"} (case-insensitive)\n  Combined: entity_type: \"person\", filters: {\"field\": \"~physics\"}\n\nWithout entity_type, searches ALL node types.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"project_id":{"type":"string","description":"Project ID (UUID)"},"entity_type":{"type":"string","description":"Entity key to filter by (optional — omit to search all types)"},"filters":{"type":"object","description":"Property filters. Prefix value with ~ for contains search."},"limit":{"type":"integer","description":"Max results (default: 100, max: 1000)"},"offset":{"type":"integer","description":"Pagination offset (default: 0)"},"environment":{"type":"string","description":"Environment: staging or production (default: staging)"}},"required":["project_id","filters"]}},{"name":"traverse_graph","description":"Walk the graph from a starting node, discovering connected knowledge.\n\nReturns all nodes reachable within max_depth hops, with their distance from the start.\nEssential for exploring knowledge graphs — find related concepts, trace connections, discover clusters.\n\nExample: Start from \"Alan Turing\", traverse outgoing relationships up to 3 hops deep:\n  start_entity_type: \"person\"\n  start_entity_id: \"alan-turing-001\"\n  max_depth: 3\n  direction: \"outgoing\"\n\nSupports filtering by relationship types and direction.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"project_id":{"type":"string","description":"Project ID (UUID)"},"start_entity_type":{"type":"string","description":"Entity key of the starting node"},"start_entity_id":{"type":"string","description":"Entity ID of the starting node"},"max_depth":{"type":"integer","description":"Maximum traversal depth (default: 3, max: 10)"},"relationship_types":{"type":"array","description":"Filter by relationship types (UPPER_SNAKE_CASE). Omit for all types.","items":{"type":"string"}},"direction":{"type":"string","description":"Direction: outgoing, incoming, or both (default: both)"},"limit":{"type":"integer","description":"Max results (default: 100, max: 1000)"},"environment":{"type":"string","description":"Environment: staging or production (default: staging)"}},"required":["project_id","start_entity_type","start_entity_id"]}},{"name":"update_graph_node","description":"Update properties of an existing node in a deployed graph project. Only send the fields you want to change — unspecified fields remain unchanged.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"project_id":{"type":"string","description":"Project ID (UUID)"},"entity_type":{"type":"string","description":"Entity key (e.g., 'person', 'concept')"},"entity_id":{"type":"string","description":"The node's entity_id"},"data":{"type":"object","description":"Properties to update (partial update)"},"environment":{"type":"string","description":"Environment: staging or production (default: staging)"}},"required":["project_id","entity_type","entity_id","data"]}},{"name":"update_graph_schema","description":"Update a graph project's schema (saves to database, does NOT deploy).\n\n⚠️ Follow ALL rules from create_graph_project:\n• Must have \"nodes\" key with at least one entity\n• Each entity needs \"description\" and \"schema\" with field definitions\n• Each field is {\"type\": \"...\", \"required\": true/false} — required defaults to false\n• Relationships need \"from\", \"to\", and \"cardinality\"\n• Field types: string, integer, float, boolean, date, json\n• Relationship types should be UPPER_SNAKE_CASE\n• Entity names should be PascalCase\n\nWORKFLOW:\n1. Use get_graph_schema to see current schema\n2. Modify following all rules\n3. Call update_graph_schema (saves only)\n4. Call deploy_graph_staging to apply changes\n5. Monitor with get_job_status\n\nDRY RUN: pass dry_run=true to preview what a deploy WOULD change (renames, deletions) without saving.\n\nNOTE: This only saves the schema. You MUST call deploy_graph_staging afterwards to deploy.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"project_id":{"type":"string","description":"Project ID (UUID)"},"schema":{"type":"object","description":"New graph schema with 'nodes' and optionally 'relationships' keys."},"dry_run":{"type":"boolean","description":"Preview the planned migration (renames/deletions) without saving or deploying. Nothing is applied."}},"required":["project_id","schema"]}},{"name":"update_schema","description":"Update a project's schema (saves to database, does NOT deploy).\n\n⚠️ CRITICAL: Follow ALL rules from create_project:\n• FLAT format (no 'fields' nesting)\n• string: max_length (default 255)\n• decimal: precision + scale (default 10, 2)\n• Use \"datetime\" NOT \"timestamp\"\n• DON'T define: id, created_at, updated_at\n• NEVER create users/customers/employees tables (use app_users)\n\n⚠️ MIGRATION RULES:\n• New fields MUST be \"required\": false OR have \"default\" value\n• Cannot add required field without default to existing tables\n• Safe: {new_field: {type: \"string\", max_length: 100, required: false}}\n\nWORKFLOW:\n1. Use get_schema to see current schema\n2. Modify following ALL rules\n3. (optional) Call update_schema with dry_run=true to preview the migration first\n4. Call update_schema (saves only)\n5. Call deploy_staging to apply changes\n6. Monitor with get_job_status\n\nDRY RUN: pass dry_run=true to preview what a deploy WOULD change — renames, drops, creates —\nwithout saving or deploying anything. The response flags destructive operations (dropped\ntables/columns) so you can review before applying.\n\nNOTE: Without dry_run this only saves the schema. You MUST call deploy_staging afterwards to apply changes.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"project_id":{"type":"string","description":"Project ID (UUID)"},"schema":{"type":"object","description":"New JSON schema in FLAT format (table_name → field_name → properties). Every field MUST have a 'type' property."},"dry_run":{"type":"boolean","description":"Preview the planned migration (renames/drops/creates) without saving or deploying. Nothing is applied."}},"required":["project_id","schema"]}}],"scan":{"score":83,"grade":"B","scanned_at":"2026-09-19T00:27:06.750Z","report":{"scannerVersion":"0.1.3","scannedAt":"2026-09-19T00:27:06.694Z","components":{"code":{"score":25,"max":25,"notes":["10 source files scanned"]},"reliability":{"score":20,"max":20,"notes":["remote reachable in 1917ms"]},"poisoning":{"score":13,"max":15,"notes":["49 tool descriptions checked"]},"auth":{"score":3,"max":15,"notes":["open endpoint exposes 19 write-action tools with no auth"]},"maintenance":{"score":15,"max":15,"notes":["last push 0 days ago"]},"identity":{"score":7,"max":10,"notes":["registry namespace matches repository owner"]}},"findings":[{"id":"auth.open-write","severity":"high","component":"auth","title":"Write-action tools reachable without authentication"},{"id":"poison.long-description","severity":"low","component":"poisoning","title":"Unusually long tool description (over 2,000 characters)","evidence":"tool create_project: …Create a new RationalBloks project from a JSON schema. ⚠️ CRITICAL RULES - READ BEFORE CREATING SCHEMA: 1. FLAT FORMAT (REQUIRED): ✅ CORRECT: {users: {email: {type: \"string\", max_length: 255}}} ❌ WRONG: {users: {fields: {email: {type: \"string\"}}}} DO NOT nest under 'fields' key! 2. FIELD TYPE REQUIREMENTS: • string: MUST have \"max_length\" (e.g., max_length: 255) • decimal: MUST have \"precision\" and \"scale\" (e.g., precision: 10, scale: 2) • datetime: Use \"datetime\" NOT \"timestamp\" • ALL fields: MUST have \"type\" property 3. AUTOMATIC FIELDS (DON'T define): • id (uuid, primary key) • created_at (datetime) • updated_at (datetime) 4. USER AUTHENTICATION: ❌ NEVER create \"users\", \"customers\", \"employees\" tables with email/password ✅ USE built-in app_users table Example: { \"employee_profiles\": { \"user_id\": {type: \"uuid\", foreign_key: \"app_users.id\", required: true}, \"department\": {type: \"string\", max_length: 100} } } 5. AUTHORIZATION: Add user_id → app_users.id to enable \"only see your own data\" Example: { \"orders\": { \"user_id\": {type: \"uuid\", foreign_key: \"app_users.id\"}, \"total\": {type: \"decimal\", precision: 10, scale: 2} } } 6. FIELD OPTIONS: • required: true/false • unique: true/false • default: any value • enum: [\"val1\", \"val2\"] • foreign_key: \"table.id\" AVAILABLE TYPES: string, text, integer, decimal, boolean, uuid, date, datetime, json, uuid_array, integer_array, text_array, float_array Array types store PostgreSQL native arrays with automatic GIN indexing: • uuid_array: UUID[] — for sets of references (e.g., tensor coordinates) • integer_array: BIGINT[] — for dimension indices, integer sets • text_array: TEXT[] — for tags, categories, label sets • float_array: DOUBLE PRECISION[] — for weight vectors, scores GIN-indexed operators: @> (contains), <@ (contained_by), && (overlaps) BACKEND ENGINE: • python (default): FastAPI backend — mature, full-featured • rust: Axum backend — faster cold starts, lower memory, high performance WORKFLOW: 1. Use get_template_schemas FIRST to see valid examples 2. Create schema following ALL rules above 3. Call this tool (optionally choose backend_type: \"python\" or \"rust\") 4. Monitor with get_job_status (2-5 min deployment) After creation, use get_job_status with returned job_id to monitor deployment. While RationalBloks is being updated, the call is refused with 'RationalBloks is being updated': call it again in a few minutes.…"}],"inputs":{"probes":[{"url":"https://mcp.rationalbloks.com/","reachable":true,"authRequired":false,"latencyMs":1917,"serverInfo":{"name":"rationalbloks-backend","version":"0.14.0"}}],"packages":[{"registryType":"pypi","identifier":"rationalbloks-mcp","version":"0.14.0","found":true,"license":"Proprietary","dependencyCount":7,"publishedAt":"2026-09-18T15:25:04.323302Z","repositoryUrl":"https://github.com/rationalbloks/rationalbloks-mcp"}],"repo":{"found":true,"owner":"rationalbloks","repo":"rationalbloks-mcp","archived":false,"pushedAt":"2026-09-18T15:17:57Z","stars":1,"forks":0,"openIssues":0,"ownerType":"Organization","ownerAvatarUrl":"https://avatars.githubusercontent.com/u/235621158?v=4","ownerCreatedAt":"2025-10-02T02:32:34Z","license":"NOASSERTION"},"icon":{"url":"https://rationalbloks.com/apple-touch-icon.png","source":"site","width":180,"height":180},"presence":{"stars":1,"forks":0,"downloadsWeek":null,"license":"NOASSERTION","lastPushAt":"2026-09-18T15:17:57.000Z","score":23}}}},"grade_history":[{"kind":"restore","fromGrade":"C","toGrade":"B","reason":"score 83: Write-action tools reachable without authentication; Unusually long tool description (over 2,000 characters)","createdAt":"2026-09-19T00:27:15.925Z"}],"reviews":[]}