Mural MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| MURAL_CLIENT_ID | Yes | Your Mural Client ID from app registration | |
| MURAL_CLIENT_SECRET | Yes | Your Mural Client Secret from app registration | |
| MURAL_ALLOWED_WORKSPACES | No | Optional comma-separated workspace IDs for access restriction |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| list_workspacesA | List Mural workspaces (stripped to id+name) |
| list_roomsA | List rooms in a workspace (stripped to id+name+type). Default limit 50. |
| list_muralsA | List murals in a room or workspace (stripped to id+title+roomId). Default limit 50. |
| get_muralA | Get metadata for a specific mural (stripped to key fields) |
| get_widgetsA | List widgets on a mural (stripped to key fields). Default limit 50. Use 'next' cursor to paginate. |
| get_widgetA | Get a single widget by ID (stripped to key fields). |
| create_sticky_notesB | Create sticky notes on a mural (batch, up to 1000). Returns IDs. |
| update_sticky_noteB | Update a sticky note (text, position, color, size) |
| create_text_boxesA | Create text boxes on a mural (batch, up to 1000). Returns IDs. |
| update_text_boxC | Update a text box on a mural |
| create_shapesA | Create shapes on a mural (batch, up to 1000). Common shapes: rectangle, circle, diamond, triangle, star, hexagon. Full list validated server-side. |
| update_shapeC | Update a shape on a mural |
| create_areaB | Create an area (grouping section) on a mural. |
| update_areaD | Update an area on a mural |
| create_imageA | Add an image to a mural from a public URL. Auto-detects dimensions. Max 10MB. |
| connect_widgetsC | Draw a connected arrow between two widgets. Provide source/target IDs and positions. |
| connect_widgets_batchA | Connect multiple widget pairs with arrows in one call. Returns all arrow IDs. |
| create_arrowA | Draw a freeform arrow (not snapped to widgets). For connected arrows, use connect_widgets. |
| delete_widgetA | Delete any widget from a mural by ID |
| create_muralA | Create a new mural in a room. Returns mural ID + title. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 20 tools
Each tool targets a distinct resource and action. Widget-specific create/update tools are clearly separated by widget type, and the three arrow tools are differentiated by connection mode.
All tool names follow a consistent verb_noun pattern (list_, get_, create_, update_, delete_, connect_). The two batch variants are clearly named, and no style mixing occurs.
20 tools is on the heavier side but justified for covering workspaces, rooms, murals, and a variety of widget types. The count is slightly over the ideal range but not excessive.
Core workflows are covered: listing and creating murals, reading and creating widgets, updating sticky notes/text/shapes/areas, and deleting any widget. Minor gaps exist (no update_image, no delete_mural or update_mural), but these are not blocking for typical use.