Mural Mcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Mural Mcp (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
MCP server for the Mural visual collaboration platform — focused on board content editing: sticky notes, shapes, text boxes, areas, images, and connectors.
Built with the Model Context Protocol SDK and TypeScript. Runs over stdio — compatible with any MCP client (Warp, Cursor, Claude Code, etc.).
20 tools across 4 modules:
| Tool | Description |
|---|---|
create_sticky_notes | Batch-create sticky notes (1–1000) |
update_sticky_note | Update text, position, color, size |
create_text_boxes | Batch-create text boxes (1–1000) |
update_text_box | Update a text box |
create_shapes | Batch-create shapes — rectangle, circle, diamond, triangle, star, hexagon, and 50+ more |
update_shape | Update a shape |
create_area | Create grouping areas |
update_area | Update an area |
create_image | Add image from public URL (auto-detects dimensions, max 10 MB) |
connect_widgets | Draw a connected arrow between two widgets |
connect_widgets_batch | Connect multiple widget pairs in one call (up to 100) |
create_arrow | Draw a freeform arrow (not snapped to widgets) |
delete_widget | Delete any widget by ID |
| Tool | Description |
|---|---|
get_widgets | List widgets (paginated, default 50, stripped to key fields) |
get_widget | Get a single widget by ID |
| Tool | Description |
|---|---|
list_workspaces | List accessible workspaces |
list_rooms | List rooms in a workspace (default limit 50) |
list_murals | List murals in a room or workspace (default limit 50) |
get_mural | Get mural metadata |
| Tool | Description |
|---|---|
create_mural | Create a new mural (defaults: infinite canvas, grey background) |
All tool responses are optimized for minimal token usage:
w/h/bg instead of width/height/backgroundColor){summary, count, ids, preview} instead of full object dumpsget_widgets defaults to 50 items with cursor-based paginationhttp://localhost:9876/callbackgit clone https://github.com/janschmiedgen/mural-mcp.git
cd mural-mcp
npm install
npm run buildexport MURAL_CLIENT_ID=your_client_id
export MURAL_CLIENT_SECRET=your_client_secret
npm run authThis opens your browser for Mural consent. Tokens are saved to ~/.mural-mcp/tokens.json and auto-refresh at runtime.
Add as a CLI MCP Server in Settings → MCP Servers:
{
"command": "node",
"args": ["/path/to/mural-mcp/build/index.js"],
"env": {
"MURAL_CLIENT_ID": "your_client_id",
"MURAL_CLIENT_SECRET": "your_client_secret"
}
}Add to ~/.cursor/mcp.json:
{
"mcpServers": {
"mural": {
"command": "node",
"args": ["/path/to/mural-mcp/build/index.js"],
"env": {
"MURAL_CLIENT_ID": "your_client_id",
"MURAL_CLIENT_SECRET": "your_client_secret"
}
}
}
}claude mcp add mural -- node /path/to/mural-mcp/build/index.jsSet MURAL_CLIENT_ID and MURAL_CLIENT_SECRET in your shell environment.
Restrict access to specific workspaces by setting the MURAL_ALLOWED_WORKSPACES environment variable:
export MURAL_ALLOWED_WORKSPACES="workspace_id_1,workspace_id_2"If not set, all workspaces the authenticated user can access are available.
npm install
npm run build # Compile TypeScript → build/
npm run dev # Run with tsx (hot reload)
npm run auth # Re-authenticate with Muralsrc/
├── index.ts # Entry point, registers tools, starts stdio transport
├── types.ts # TypeScript interfaces (Widget, Mural, Room, etc.)
├── auth/
│ ├── oauth.ts # OAuth2 + PKCE flow, token refresh
│ ├── token-store.ts # Token persistence (~/.mural-mcp/tokens.json)
│ └── workspace-guard.ts # Workspace allowlist guard
├── client/
│ └── mural-api.ts # HTTP client for Mural Public API v1
├── tools/
│ ├── widgets-write.ts # 13 write tools (create, update, connect, delete)
│ ├── widgets-read.ts # 2 read tools (get_widgets, get_widget)
│ ├── navigation.ts # 4 navigation tools (workspaces, rooms, murals)
│ └── mural-manage.ts # 1 management tool (create_mural)
└── utils/
└── strip.ts # Response strippers for token efficiency~/.mural-mcp/tokens.json, auto-refreshhttps://app.mural.co/api/public/v1)A few quirks discovered during development that may help contributors:
startRefId is the widget the arrowhead points TO, and endRefId is the tail. The arrowhead renders at the first point in the points array.fontSize and textAlign can be set during creation. backgroundColor must be set via a subsequent update call.connect_widgets may fail with WIDGET_SIZE_INVALID when source and target are nearly vertically aligned (near-zero arrow width). Use create_arrow (freeform) as a fallback.MIT
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.