Model Context Protocol server · always-on, edge-hosted

Miro's docs, spoken fluently by your AI.

A free, unofficial MCP server that lets Claude, ChatGPT, Copilot, or any MCP-capable assistant search and read Miro's live developer documentation — instead of guessing from stale training data.

Connect your AI
tool calls served

      
Documentation drifts. Model training data doesn't follow it. Every AI assistant answering a Miro Web SDK or REST API question is really answering from a snapshot — often a stale, subtly wrong one.

This server closes that gap. It sits in front of developers.miro.com and exposes three tools that let an assistant search the real docs, fetch a page's full text on demand, and cite the source URL — instead of reciting a half-remembered API shape.

It runs as a stateless service: a fresh MCP session per request, no accounts, nothing about you retained between calls — the only thing persisted is an aggregate count of how many tool calls it has served.

3MCP tools exposed
107docs pages indexed
tool calls served
What's inside

Three tools. That's the whole surface.

No config, no OAuth screen, no rate-limit key. Point a client at the endpoint and these become callable immediately.

01 · SEARCH

miro_docs_search

Ranked search across the full catalog — titles, URLs, descriptions, and section. The first call in almost every conversation.

{ "query": "enterprise audit logs", "limit": 10 }
02 · FETCH

miro_docs_get_page

Fetches a page's readable content (40,000 char cap), restricted to developers.miro.com. Hosts with MCP Apps support render a formatted view alongside it.

{ "url": "https://developers.miro.com/docs/..." }
03 · BROWSE

miro_docs_list_sections

Lists the top-level categories — Getting Started, REST API, Web SDK, OAuth & Security, App Development, Enterprise & SCIM, Marketplace — for browsing without a query.

{ } → { "sections": [ … ] }
Connect

Add it to whatever you already use.

Streamable HTTP, no authentication. Pick your client below.

.vscode/mcp.json