Go back
Rapid MCP Docs Centre is Live

Rapid MCP Docs Centre is Live

Rapid MCP Docs Centre is Live

We’ve launched the Docs Centre to make it easier to learn Rapid MCP, connect agents, and build tools fast.

Links:

  • Quick start: /docs/quick-setup
  • Tools guide: /docs/mcp-tools
  • MCP JSON spec: /docs/mcp-server-json

What is Rapid MCP?

Rapid MCP lets you turn any REST API into an MCP tool and connect it to AI agents (Cursor, Windsurf, Claude Desktop, OpenAI, etc.). Each tool maps 1:1 to an endpoint, with simple templating for arguments.

Quick variable examples

String

{
  "message": "any test string"
}

Template

{
  "message": "{{properties.message}}"
}

Number

{
  "age": 25
}

Template

{
  "person_age": "{{properties.age}}"
}

Object

{
  "name": "John Doe",
  "meta": { "contact": { "email": "[email protected]" } }
}

Template

{
  "name": "{{properties.name}}",
  "email": "{{properties.meta.contact.email}}"
}

Array

{
  "array": [{ "key": "france" }]
}

Template

{
  "countries": "{{properties.array}}"
}

Example: quick weather tool

Tool name: get_weather

Tool arguments

{
  "latitude": 52.52,
  "longitude": 13.419998
}

Endpoint (GET)

https://api.open-meteo.com/v1/forecast?latitude={{properties.latitude}}&longitude={{properties.longitude}}

Body

{
  "lat": "{{properties.latitude}}",
  "long": "{{properties.longitude}}"
}

Connect an agent (URL)

{
  "mcpServers": {
    "RapidMCP": {
      "url": "https://rapid-mcp.com/mcp/<serverId>/stream"
    }
  }
}

Explore the full docs for guides, providers, and advanced examples. We'll keep expanding coverage as Rapid MCP grows.