NetzSchule Miro MCP Server
Click on "Install 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., "@NetzSchule Miro MCP ServerList my boards"
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.
NetzSchule Miro MCP Server
A Model Context Protocol server to connect to the MIRO Whiteboard Application — with a REST API adapter for ChatGPT and other LLMs.
Based on @llmindset/mcp-miro, with added board filtering, element sizing, and migration to the current MCP SDK (McpServer API with Zod schemas).
Allows Board manipulation, sticky creation, bulk operations and more.
Pass your OAuth key as an Environment Variable, or using the "--token" argument.
By default, only shows boards owned by the authenticated user. Can be configured to filter by team or show all boards.
Input validation via Zod schemas.
Taking a photo of stickies and asking Claude to create MIRO equivalent works really well.
Remote MCP server — deploy as AWS Lambda with Streamable HTTP transport and built-in OAuth proxy. Connect Claude Desktop with just a URL — no Node.js, npm, git, or Miro credentials required on the client side.
REST API adapter — deploy as AWS Lambda to use with ChatGPT (GPT Actions), Gemini, or any LLM with function calling.
Architecture
Claude Desktop → MCP (stdio) → MiroClient → Miro API (local)
Claude Desktop → MCP (Streamable HTTP) → MiroClient → Miro API (remote, serverless)
ChatGPT / GPT → REST API → MiroClient → Miro API (remote, serverless)All three paths share the same MiroClient business logic — no duplication.
Project Structure
src/
├── MiroClient.ts # Miro API client (fetch-based, Bearer token auth)
├── MiroClient.test.ts # Tests (Vitest)
├── schemas.ts # Shared Zod validation schemas
├── transforms.ts # Data transformations (sticky notes, bulk items, policies)
├── index.ts # Stdio entry point (CLI)
├── mcp/
│ ├── registerTools.ts # MCP tool/resource/prompt registration orchestrator
│ ├── lambda.ts # AWS Lambda: Streamable HTTP + OAuth proxy
│ ├── md.d.ts # TypeScript declaration for .md imports
│ └── tools/ # One file per MCP tool
│ ├── types.ts # ToolContext, RegisterTool type
│ ├── listBoards.ts
│ ├── createStickyNote.ts
│ ├── bulkCreateItems.ts
│ ├── getFrames.ts
│ ├── getItemsInFrame.ts
│ ├── createShape.ts
│ ├── getBoardAccess.ts
│ ├── updateBoardSharing.ts
│ └── getBoardShareLink.ts
└── rest/
├── lambda.ts # AWS Lambda: REST API entry point
├── handler.ts # Request dispatch & JSON responses
└── router.ts # HTTP pattern matchingEach MCP tool lives in its own file under src/mcp/tools/, making the codebase easy to navigate and extend.
The remote MCP server includes a full OAuth proxy: Miro Client ID and Secret are stored server-side in AWS, so end users only need the MCP URL to connect. The OAuth flow (authorization, token exchange) is handled transparently between Claude Desktop, the Lambda, and Miro.
Related MCP server: Miro MCP Server
Features
Resources
Board Contents — dynamic resource template
miro://board/{boardId}, with automatic board listing filtered by owner/team
Tools
list_boards — list available boards with pagination (
limit/offset). Returns total board count so the LLM can paginate through large collectionscreate_sticky_note — with customizable color, position, shape (
square/rectangle), and 6 named size presets (see below)create_shape — with full control over style (
fillColor,borderColor, etc.), position, and geometry (width,height,rotation)bulk_create_items — up to 20 items in a single transaction
get_frames — get all frames from a board
get_items_in_frame — get items within a specific frame
get_board_access — view sharing policy (API-level settings), permissions policy, and list of board members with roles
update_board_sharing — configure board access: access, team access, organization access levels. Verifies changes with a follow-up GET and warns if the update was not applied
get_board_share_link — get the board's direct view link (URL). See Miro API Sharing Limitations for details
Sticky Note Size Presets
Sticky notes support named size presets (rectangular shape, each ~2x the previous):
Preset | Width (px) | Description |
| 325 | Tiny |
| 650 | Small |
| 1300 | Medium |
| 2600 | Medium-large |
| 5600 | Large |
| 11200 | Extra-large |
Using a size preset automatically sets the shape to rectangle. Height is auto-calculated by the Miro API (fixed W:H ratio of ~1.535:1 for rectangular stickies). You can also pass a custom width for arbitrary sizes.
Prompts
Working with MIRO — board coordinate system and best practices
Board Listing
By default, list_boards returns 20 most recently modified boards owned by the current user, sorted by last_modified. Set scope to all to see all accessible boards (including other team members' boards). This applies to all interfaces (MCP, REST API).
Parameters
Parameter | Default | Description |
| 20 | Number of boards to return (1-50) |
| 0 | Pagination offset |
|
| Sort order: |
| — | Search boards by name (max 500 chars) |
|
|
|
Board Filtering (local MCP only)
The local MCP server (stdio) supports additional filtering via CLI flags:
Option | Environment Variable | Description |
(default) | — | Auto-detect user, show only owned boards |
|
| Filter boards by team ID |
|
| Disable filtering, show all accessible boards |
The remote MCP server and REST API show all boards accessible to the authenticated user by default (no owner/team filter). If MIRO_TEAM_ID is set as an environment variable on the Lambda, boards are filtered by that team.
Examples (local):
# Only my boards (default, no extra flags needed)
node build/index.js --token YOUR_TOKEN
# Filter by team
node build/index.js --token YOUR_TOKEN --team-id 1234567890
# Show all boards (legacy behavior)
node build/index.js --token YOUR_TOKEN --no-filterRemote MCP Server (Claude Desktop — no installation required)
The MCP server can be deployed to AWS Lambda with Streamable HTTP transport and a built-in OAuth proxy. End users connect from Claude Desktop with just a URL — no Node.js, npm, git, or Miro credentials needed on the client side.
How it works
Claude Desktop AWS Lambda Miro
| | |
|--- POST /mcp ---------------->| |
|<-- 401 + WWW-Authenticate | |
| | |
|--- discover OAuth metadata -->| |
|<-- { authorization_endpoint, | |
| token_endpoint, ... } | |
| | |
|--- open browser --------------|-------------------------->|
| | Miro login + authorize |
|<-- redirect with auth code ---|<--------------------------|
| | |
|--- POST /oauth/token -------->|--- proxy to Miro -------->|
| (code) | (+ inject client_id |
|<-- { access_token } ----------|<-- + client_secret) ------|
| | |
|--- POST /mcp (Bearer) ------->|--- Miro API calls ------->|
|<-- MCP response |<-- board data ------------|Key points:
OAuth proxy — Miro Client ID and Secret are stored server-side in AWS. The Lambda injects them during token exchange, so users never see or handle these credentials.
Dynamic Client Registration (RFC 7591) — Claude Desktop automatically registers as an OAuth client.
Stateless — each Lambda invocation creates a fresh MCP server. No session state, no DynamoDB, no ElastiCache.
Auto-detection — boards are automatically filtered to those owned by the authenticated user.
Connecting from Claude Desktop
Open Claude Desktop → Settings → Integrations → Add custom connector (or Add More)
Enter the MCP server URL:
https://YOUR_API_GATEWAY_URL/prod/mcpClick Connect — a browser window opens for Miro authorization
Authorize the Miro App — Claude Desktop receives a token automatically
Done — Miro tools appear in your chat
No API keys, tokens, or credentials needed on the client side. The OAuth flow handles everything.
Connecting via config file (alternative)
If you already have a Miro OAuth token, you can configure Claude Desktop directly:
{
"mcpServers": {
"mcp-miro": {
"url": "https://YOUR_API_GATEWAY_URL/prod/mcp",
"headers": {
"Authorization": "Bearer YOUR_MIRO_OAUTH_TOKEN"
}
}
}
}Config file location:
Mac:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%/Claude/claude_desktop_config.json
Deploying the Remote MCP Server
To deploy to your own AWS account:
Prerequisites
AWS CLI and AWS SAM CLI installed and configured
Miro App — create one at Miro App Management:
Set permissions:
boards:read,boards:writeAdd the Claude Desktop redirect URI to your Miro App's Redirect URIs
Note the Client ID and Client Secret
Recommended: enable Expire user authorization token. Miro then issues short-lived access tokens with refresh tokens, and the OAuth proxy supports the
refresh_tokengrant — clients renew tokens automatically without user interaction. This mitigates token revocation when the same Miro App is authorized from multiple clients (e.g. Claude Desktop and ChatGPT): Miro issues one access token per user+app, so a second authorization revokes the first token; with refresh tokens the first client recovers without a re-login. Without this setting, tokens are long-lived but a revoked client must re-authenticate manually.
S3 bucket for SAM deployment artifacts
Deploy
Build the Lambda bundles:
npm ci
npm run build:lambdasDeploy with AWS SAM:
sam build --no-use-container
sam deploy \
--stack-name miro-mcp-rest-api \
--s3-bucket YOUR_SAM_BUCKET \
--capabilities CAPABILITY_IAM \
--parameter-overrides \
MiroTeamId=YOUR_TEAM_ID \
MiroClientId=YOUR_MIRO_CLIENT_ID \
MiroClientSecret=YOUR_MIRO_CLIENT_SECRETMiroTeamId— optional, filters boards for the REST API LambdaMiroClientId/MiroClientSecret— required for the OAuth proxy (MCP Lambda only)
The stack outputs:
McpUrl— MCP Streamable HTTP endpoint (share with Claude Desktop users)ApiUrl— REST API endpoint (for ChatGPT GPT Actions)
CI/CD Deployment
The project includes a GitHub Actions workflow (deploy-lambda.yml) for automated deployment. Configure these GitHub Secrets:
Secret | Description |
| IAM role ARN for OIDC-based AWS authentication |
| S3 bucket for SAM deployment artifacts |
| Miro team ID (for REST API board filtering) |
| Miro App Client ID (for OAuth proxy) |
| Miro App Client Secret (for OAuth proxy) |
Trigger the workflow manually via GitHub Actions → "Deploy REST API" → Run workflow, and pick the target environment:
staging (default) — deploys to a separate
miro-mcp-rest-api-stagingstack with reduced concurrency limits. Use it to verify changes before they reach real users.prod — deploys to the
miro-mcp-rest-apistack.
Each environment maps to a GitHub Environment of the same name, so you can override secrets per environment (e.g. a separate Miro App for staging) and add protection rules (e.g. required approval for prod). If no environment-level secrets are configured, repository-level secrets are used for both.
The "Mark Current Version as Stable" and "Rollback Lambda" workflows accept the same environment choice (defaulting to prod).
Note: the staging stack has its own API Gateway URL. If you want to test the MCP OAuth flow on staging, add the staging callback URL to your Miro App's Redirect URIs (or use a dedicated staging Miro App).
Local Installation (Claude Desktop)
Prerequisites
Node.js (v18 or later) — download here
To check if already installed: open Terminal (Mac) or Command Prompt (Windows) and run
node --version
Miro OAuth Token — from your Miro App (see Miro App Management). If your organization already has a Miro App, ask the admin for the Installation URL to authorize it and obtain your token.
Claude Desktop — with Developer Tools enabled (Settings → Developer)
Step 1: Install the MCP server
Open Terminal (Mac) or Command Prompt (Windows) and run:
git clone https://github.com/my-best-code/NetzSchule-Miro-MCP.git
cd NetzSchule-Miro-MCP
npm install
npm run buildNote the full path to the build/index.js file — you'll need it in the next step. For example:
Mac:
/Users/yourname/NetzSchule-Miro-MCP/build/index.jsWindows:
C:\Users\yourname\NetzSchule-Miro-MCP\build\index.js
Step 2: Configure Claude Desktop
Open the config file:
Mac:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%/Claude/claude_desktop_config.json
Add the following (replace the paths and token with your own):
{
"mcpServers": {
"mcp-miro": {
"command": "node",
"arguments": [
"/full/path/to/NetzSchule-Miro-MCP/build/index.js",
"--token", "YOUR_MIRO_OAUTH_TOKEN"
]
}
}
}Step 3: Restart Claude Desktop
Close and reopen Claude Desktop. You should see the Miro tools available in the chat.
Additional options
To filter boards by team, add the --team-id argument:
{
"mcpServers": {
"mcp-miro": {
"command": "node",
"arguments": [
"/full/path/to/NetzSchule-Miro-MCP/build/index.js",
"--token", "YOUR_MIRO_OAUTH_TOKEN",
"--team-id", "1234567890"
]
}
}
}Or use environment variables instead of arguments:
{
"mcpServers": {
"mcp-miro": {
"command": "node",
"arguments": [
"/full/path/to/NetzSchule-Miro-MCP/build/index.js"
],
"env": {
"MIRO_OAUTH_TOKEN": "YOUR_MIRO_OAUTH_TOKEN",
"MIRO_TEAM_ID": "1234567890"
}
}
}
}REST API for ChatGPT (GPT Actions)
In addition to MCP (for Claude), this project includes a REST API adapter that can be deployed as an AWS Lambda. This makes the same Miro tools available to ChatGPT users via GPT Actions, or any LLM that supports OpenAPI / function calling.
Authentication
The REST API uses Miro OAuth per user. Each request must include a valid Miro OAuth token in the Authorization: Bearer <token> header. There is no shared API key — every user authenticates with their own Miro account.
When used with ChatGPT GPT Actions, the OAuth flow is handled automatically: users authorize the Miro App once, and ChatGPT sends their token with every request.
REST API Endpoints
Method | Path | Description |
|
| List available boards (max 50 per page) |
|
| Get all frames |
|
| Get items in frame |
|
| Get board access info |
|
| Get board view link |
|
| Create sticky note |
|
| Bulk create items (max 20) |
|
| Create shape |
|
| Update sharing policy |
Setting up GPT Actions (ChatGPT)
Prerequisites
You need a Miro App for OAuth. If you're in the same Miro organization as the app creator, use the shared Installation URL. Otherwise, create your own:
Go to Miro App Management → Create new app
Set permissions:
boards:read,boards:writeNote the Client ID and Client Secret
Creating the Custom GPT
Requires ChatGPT Plus. Once created, the GPT can be shared with anyone (including free users).
Go to ChatGPT → Create a GPT
In the Actions section, import the OpenAPI schema from
openapi.jsonUpdate
servers.urlto your API Gateway URLConfigure Authentication:
Type: OAuth
Authorization URL:
https://miro.com/oauth/authorizeToken URL:
https://api.miro.com/v1/oauth/tokenClient ID / Client Secret: from your Miro App
Scope:
boards:read boards:write
Copy the Callback URL provided by ChatGPT
In your Miro App settings, add this Callback URL as a Redirect URI
Publish the GPT (e.g., "Anyone with the link")
For users outside your Miro organization
Users from other Miro organizations cannot authorize a Draft Miro App. They have two options:
Create their own Miro App (recommended) — takes 5 minutes, gives them their own Client ID / Secret, then they create their own GPT Action following the steps above
Publish the Miro App to the Miro Marketplace — makes it available to all Miro users, but requires Miro review and approval
The OpenAPI schema (openapi.json) is also compatible with other LLM frameworks that support function calling (LangChain, Google ADK, etc.).
Miro API Sharing Limitations
The Miro REST API v2 has important limitations regarding board sharing that differ from the Miro UI:
Two different sharing mechanisms
Mechanism | API Support | Description |
| ✅ Read/Write | API-level setting that controls global link access. May be restricted by organization settings (often locked to |
UI share links ( | ❌ Not supported | Share links generated in Miro UI (Share > Copy board link) with specific permissions. These are a UI-only feature — the Miro API cannot create, read, update, or delete them. |
Board members | ✅ Read/Write | Invite specific users by email via |
| ✅ Read-only | Direct URL to the board (no embedded permissions). |
What this means in practice
get_board_share_linkreturns the board'sviewLink(direct URL), not a UI-generated share link withshare_link_id.get_board_accessshowsinviteToAccountAndBoardLinkAccesswhich may showno_accesseven if the board has an active UI share link with Editor access. These are independent settings.update_board_sharingcan changeinviteToAccountAndBoardLinkAccess, but this may be overridden or restricted by organization-level policies.To create a share link with specific permissions, use the Miro UI: Share > "Anyone with the link" > select access level > Copy board link.
Source: Miro Community — confirmed by Miro staff that share link URLs with
share_link_idare only supported by the Miro UI.
CI/CD
The project uses GitHub Actions for continuous integration, publishing, and deployment:
CI (
ci.yml) — runs on every push tomainand on pull requests: installs dependencies, builds, runs tests.Security (
security.yml) — runs on every push tomain, on pull requests, and weekly:npm auditand CodeQL analysis.Publish (
publish.yml) — triggers on git tags matchingv*: runs tests and publishes to npm.Deploy (
deploy-lambda.yml) — manual trigger (workflow_dispatch): builds Lambda bundles, runs tests, deploys to AWS via SAM.
Publishing a new version
npm version patch # 0.9.7 → 0.9.8 (or: minor, major)
git push && git push --tagsGitHub Actions will automatically run tests and publish the package to npm.
Development
Install dependencies:
npm installBuild the server:
npm run buildRun tests:
npm testBuild Lambda bundles:
npm run build:lambda # REST API only
npm run build:mcp-lambda # MCP Streamable HTTP only
npm run build:lambdas # bothFor development with auto-rebuild:
npm run watchAdding a New MCP Tool
Each tool is a self-contained file in src/mcp/tools/. To add a new one:
1. Create the tool file — e.g. src/mcp/tools/deleteBoard.ts:
import { z } from 'zod';
import type { RegisterTool } from './types.js';
export const registerDeleteBoard: RegisterTool = (server, ctx) => {
server.registerTool(
'delete_board',
{
description: 'Delete a Miro board',
inputSchema: {
boardId: z.string().describe('ID of the board to delete'),
},
},
async ({ boardId }) => {
// call ctx.miroClient methods here
return {
content: [{ type: 'text', text: `Deleted board ${boardId}` }],
};
},
);
};The ctx object provides miroClient (Miro API client) and boardFilter (current board filtering config).
2. Register it — add two lines to src/mcp/registerTools.ts:
import { registerDeleteBoard } from './tools/deleteBoard.js';
const tools: RegisterTool[] = [
// ...existing tools
registerDeleteBoard, // ← add here
];That's it. The tool is now available via MCP stdio and the remote Lambda.
If the tool needs a new API method, add it to MiroClient.ts. If it needs shared validation, add the schema to schemas.ts.
Debugging
Since MCP servers communicate over stdio, debugging can be challenging. We recommend using the MCP Inspector, which is available as a package script:
npm run inspectorThe Inspector will provide a URL to access debugging tools in your browser.
License
Apache-2.0 — see LICENSE for details.
Original work by evalstate.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceA Model Context Protocol server to connect to the MIRO Whiteboard Application. Allows Board manipulation, sticky creation, bulk operations and more.35113Apache 2.0
- Alicense-qualityDmaintenanceProvides comprehensive access to the Miro REST API v2 for advanced board management, content creation, and team collaboration. It supports over 40 tools for managing board items like sticky notes and shapes, alongside bulk operations and organizational features.152Apache 2.0
- Flicense-qualityDmaintenanceEnables MCP-compatible LLMs to interact with Miro whiteboards to manage boards, create and manipulate shapes, and organize content through grouping tools.
- Flicense-qualityDmaintenanceEnables AI agents to programmatically interact with a Miro board through the Miro API, supporting operations like creating items, updating positions, and managing connectors.15
Related MCP Connectors
Official Miro MCP server - Supports context to code and creating diagrams, docs, and data tables.
Monday.com MCP — wraps the Monday.com GraphQL API (BYO API key)
MCP-native open-source Notion alternative: read & write pages, databases and kanban boards.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/my-best-code/NetzSchule-Miro-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server