{
"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.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
MIT. View license →
Is it maintained?
Last commit 2 days ago.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
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