Miro integration for Model Context Protocol
What is k jarzyna mcp miro
MCP Miro Server
*
Model Context Protocol (MCP) server integrating with the Miro platform. It enables AI assistants (like Claude) to access Miro boards and manage their content through a standardized interface.
Requirements
- Node.js v16 or newer installed
- Miro account with API token
Generate Miro Access Token
- Go to the Miro Developer Portal
- Create a new app or use an existing one
- Make sure to create token with permission selected below
- Generate OAuth token by selecting
Install app and get OAuth token
Permission | Required |
---|---|
boards:read | โ |
boards:write | โ |
identity:read | โ |
identity:write | โ |
team:read | โ |
team:write | โ |
microphone:listen | โ |
screen:record | โ |
webcam:record | โ |
auditlogs:read | โ |
sessions:delete | โ |
Connecting with Claude Desktop
-
Install Claude Desktop
-
Open or create the configuration file:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json
- Windows:
%APPDATA%\Claude\claude_desktop_config.json
- macOS:
-
Update it to include this server:
{
"mcpServers":{
"miro":{
"command":"npx",
"args":[
"-y",
"@k-jarzyna/mcp-miro"
],
"env":{
"MIRO_ACCESS_TOKEN":"your_miro_access_token"
}
}
}
}
- Restart Claude Desktop
Available Tools and Resources
Tools
Miro SDK Function | MCP Tool | Available |
---|---|---|
List boards | list-boards | โ |
Create board | create-board | โ |
Update board | update-board | โ |
Delete board | delete-board | โ |
Copy board | copy-board | โ |
Get specific board | get-specific-board | โ |
Get items on board | get-items-on-board | โ |
Get specific item | get-specific-item | โ |
Update item position | update-item-position | โ |
Delete item | delete-item | โ |
Create app card item | create-app-card-item | โ |
Get app card item | get-app-card-item | โ |
Update app card item | update-app-card-item | โ |
Delete app card item | delete-app-card-item | โ |
Create card item | create-card-item | โ |
Get card item | get-card-item | โ |
Update card item | update-card-item | โ |
Delete card item | delete-card-item | โ |
Create connector | create-connector | โ |
Get connectors | get-connectors | โ |
Get specific connector | get-specific-connector | โ |
Update connector | update-connector | โ |
Delete connector | delete-connector | โ |
Create sticky note item | create-sticky-note-item | โ |
Get sticky note item | get-sticky-note-item | โ |
Update sticky note item | update-sticky-note-item | โ |
Delete sticky note item | delete-sticky-note-item | โ |
Create frame | create-frame | โ |
Get frame item | get-frame-item | โ |
Update frame item | update-frame-item | โ |
Delete frame item | delete-frame-item | โ |
Create document item | create-document-item | โ |
Get document item | get-document-item | โ |
Update document item | update-document-item | โ |
Delete document item | delete-document-item | โ |
Create text item | create-text-item | โ |
Get text item | get-text-item | โ |
Update text item | update-text-item | โ |
Delete text item | delete-text-item | โ |
Create items in bulk | create-items-in-bulk | โ |
Create image item using URL | create-image-item-using-url | โ |
Create image item using file | create-image-item-using-file | โ |
Get image item | get-image-item | โ |
Update image item | update-image-item | โ |
Update image item using file | update-image-item-using-file | โ |
Delete image item | delete-image-item | โ |
Create shape item | create-shape-item | โ |
Get shape item | get-shape-item | โ |
Update shape item | update-shape-item | โ |
Delete shape item | delete-shape-item | โ |
Create embed item | create-embed-item | โ |
Get embed item | get-embed-item | โ |
Update embed item | update-embed-item | โ |
Delete embed item | delete-embed-item | โ |
Create tag | create-tag | โ |
Get tag | get-tag | โ |
Get all tags | get-all-tags | โ |
Update tag | update-tag | โ |
Delete tag | delete-tag | โ |
Attach tag | attach-tag | โ |
Detach tag | detach-tag | โ |
Get item tags | get-item-tags | โ |
Get all board members | get-all-board-members | โ |
Get specific board member | get-specific-board-member | โ |
Remove board member | remove-board-member | โ |
Share board | share-board | โ |
Update board member | update-board-member | โ |
Create group | create-group | โ |
Get all groups | get-all-groups | โ |
Get group | get-group | โ |
Get group items | get-group-items | โ |
Update group | update-group | โ |
Ungroup items | ungroup-items | โ |
Delete group | delete-group | โ |
Create items in bulk using file | create-items-in-bulk-using-file | โ |
Create mindmap node | create-mindmap-node | โ |
Get mindmap node | get-mindmap-node | โ |
Get mindmap nodes | get-mindmap-nodes | โ |
Delete mindmap node | delete-mindmap-node | โ |
Add project member | add-project-member | โ |
Create board export job | create-board-export-job | โ |
Get all cases | get-all-cases | โ |
Get all legal holds | get-all-legal-holds | โ |
Get audit logs | get-audit-logs | โ |
Get board classification | get-board-classification | โ |
Get board content logs | get-board-content-logs | โ |
Get board export job results | get-board-export-job-results | โ |
Get board export job status | get-board-export-job-status | โ |
Get case | get-case | โ |
Get legal hold | get-legal-hold | โ |
Get legal hold content items | get-legal-hold-content-items | โ |
Get organization info | get-organization-info | โ |
Get organization member | get-organization-member | โ |
Get organization members | get-organization-members | โ |
Get project member | get-project-member | โ |
Remove project member | remove-project-member | โ |
Update board classification | update-board-classification | โ |
Local Development
- Install dependencies:
npm install
- Create a
.env
file based on the template:
cp .env.template .env
-
Edit the
.env
file and add your Miro access token -
Build the server:
npm run build
Running the Server
To run the server:
node build/index.js
License
Apache License 2.0
This project is licensed under the Apache License, Version 2.0. See the LICENSE file for details.
Leave a Comment
Frequently Asked Questions
What is MCP?
MCP (Model Context Protocol) is an open protocol that standardizes how applications provide context to LLMs. Think of MCP like a USB-C port for AI applications, providing a standardized way to connect AI models to different data sources and tools.
What are MCP Servers?
MCP Servers are lightweight programs that expose specific capabilities through the standardized Model Context Protocol. They act as bridges between LLMs like Claude and various data sources or services, allowing secure access to files, databases, APIs, and other resources.
How do MCP Servers work?
MCP Servers follow a client-server architecture where a host application (like Claude Desktop) connects to multiple servers. Each server provides specific functionality through standardized endpoints and protocols, enabling Claude to access data and perform actions through the standardized protocol.
Are MCP Servers secure?
Yes, MCP Servers are designed with security in mind. They run locally with explicit configuration and permissions, require user approval for actions, and include built-in security features to prevent unauthorized access and ensure data privacy.
Related MCP Servers
chrisdoc hevy mcp
sylphlab pdf reader mcp
An MCP server built with Node.js/TypeScript that allows AI agents to securely read PDF files (local or URL) and extract text, metadata, or page counts. Uses pdf-parse.
aashari mcp server atlassian bitbucket
Node.js/TypeScript MCP server for Atlassian Bitbucket. Enables AI systems (LLMs) to interact with workspaces, repositories, and pull requests via tools (list, get, comment, search). Connects AI directly to version control workflows through the standard MCP interface.
aashari mcp server atlassian confluence
Node.js/TypeScript MCP server for Atlassian Confluence. Provides tools enabling AI systems (LLMs) to list/get spaces & pages (content formatted as Markdown) and search via CQL. Connects AI seamlessly to Confluence knowledge bases using the standard MCP interface.
prisma prisma
Next-generation ORM for Node.js & TypeScript | PostgreSQL, MySQL, MariaDB, SQL Server, SQLite, MongoDB and CockroachDB
Zzzccs123 mcp sentry
mcp sentry for typescript sdk
zhuzhoulin dify mcp server
zhongmingyuan mcp my mac
zhixiaoqiang desktop image manager mcp
MCP ๆๅกๅจ๏ผ็จไบ็ฎก็ๆก้ขๅพ็ใๆฅ็่ฏฆๆ ใๅ็ผฉใ็งปๅจ็ญ๏ผๅฎๅ จ่ฎฉTraeๅฎ็ฐ๏ผ
zhixiaoqiang antd components mcp
An MCP service for Ant Design components query | ไธไธชๅๅฐ Ant Design ็ปไปถไปฃ็ ็ๆๅนป่ง็ MCP ๆๅก๏ผๅ ๅซ็ณป็ปๆ็คบ่ฏใ็ปไปถๆๆกฃใAPI ๆๆกฃใไปฃ็ ็คบไพๅๆดๆฐๆฅๅฟๆฅ่ฏข
Submit Your MCP Server
Share your MCP server with the community
Submit Now