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.
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.
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.
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 }
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/..." }
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": [ … ] }
Add it to whatever you already use.
Streamable HTTP, no authentication. Pick your client below.