Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"widgets-mcp-server": {
"args": [
"-jar",
"/path/to/widgets-mcp-server-1.0.0.jar"
],
"command": "java"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Widgets MCP Server is an implementation of the Model Context Protocol (MCP) that integrates with Miro board widgets via REST API. It enables AI systems to interact with Miro boards by creating and managing sticky notes, as well as retrieving audit logs. This server provides tools that AI models can use to automate board operations and analyze board activity.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in other
Pi Coding Agent extension (CLI-first) — routes bash/read/grep/find/ls through lean-ctx CLI for strong token savings. Optional MCP bridge can register advanced tools.
Autonomous spec-to-product coding-agent CLI with an MCP server exposing 34 tools over stdio.
Compress tool outputs, logs, files, and RAG chunks before they reach the LLM. 60-95% fewer tokens, same answers. Library, proxy, MCP server.
97% token reduction for AI coding sessions — zero deps, 21 languages, MCP server
MCP Security Weekly
Get CVE alerts and security updates for Widgets Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Widgets MCP Server is an implementation of the Model Context Protocol (MCP) that integrates with Miro board widgets via REST API. It enables AI systems to interact with Miro boards by creating and managing sticky notes, as well as retrieving audit logs. This server provides tools that AI models can use to automate board operations and analyze board activity.
When Claude connects to the Widgets MCP Server, the following initialization sequence occurs:
2026-01-27T14:05:30.097Z [info] [widgets-mcp-server] Server started and connected successfully
2026-01-27T14:05:30.160Z [info] [widgets-mcp-server] Message from client: {"method":"initialize","params":{"protocolVersion":"2025-06-18","clientInfo":{"name":"claude-ai","version":"0.1.0"}},"jsonrpc":"2.0","id":0}
2026-01-27T14:05:31.496Z [info] [widgets-mcp-server] Message from server: {"jsonrpc":"2.0","id":0,"result":{"protocolVersion":"2024-11-05","serverInfo":{"name":"widgets-mcp-server","version":"1.0"}}}
2026-01-27T14:05:31.497Z [info] [widgets-mcp-server] Message from client: {"method":"tools/list","params":{},"jsonrpc":"2.0","id":1}
2026-01-27T14:05:31.504Z [info] [widgets-mcp-server] Message from server: {
"jsonrpc":"2.0","id":1,
"result":{
"tools":[
{
"name":"create StickyNote",
"description":"create a sticky note widget (sticker) on a miro board",
"inputSchema":{
"properties":{
"boardKey":{"type":"string","description":"Miro board key for a sticker creation"},
"text":{"type":"string","description":"The text to be displayed on the sticker"},
"x":{"type":"integer","format":"int32","description":"Sticker position x coordinate"},
"y":{"type":"integer","format":"int32","description":"Sticker position y coordinate"}
}
}
},
{
"name":"delete StickyNote",
"description":"delete a sticky note widget (sticker) on a miro board",
"inputSchema":{
"properties":{
"boardKey":{"type":"string","description":"Miro board key for a sticker creation"},
"stickyNoteId":{"type":"integer","format":"int64","description":"StickyNote id for deletion"}
}
}
},
{
"name":"get audit logs",
"description":"retrieve audit logs for a miro board with pagination",
"inputSchema":{
"properties":{
"boardKey":{"type":"string","description":"Miro board key for audit logs retrieval"},
"offset":{"type":"integer","format":"int32","description":"Offset for pagination (starting from 1)"},
"limit":{"type":"integer","format":"int32","description":"Limit of records to retrieve (default 20)"
}
}
}
}
]}}
This log shows:
You can either download a precompiled JAR file from the Releases