/install mural
Mural
Mural is a collaborative whiteboard platform for visual thinking and team collaboration. This integration provides managed OAuth through ClawLink, so you can browse workspaces, rooms, murals, and widgets without handling API keys or tokens yourself.
Setup in 3 Steps
| Step 1: Install | Step 2: Pair Account | Step 3: Connect Mural |
|---|---|---|
![]() |
![]() |
App-specific connection GIF coming soon |
| Run the install command in OpenClaw | Sign in and approve the device | Open the dashboard and connect Mural |
How It Works
┌─────────────────┐ ┌──────────────┐ ┌──────────────────┐
│ OpenClaw │────▶│ ClawLink │────▶│ Mural API │
│ (User Chat) │ │ (OAuth) │ │ │
└─────────────────┘ └──────────────┘ └──────────────────┘
Install
openclaw plugins install clawhub:clawlink-plugin
openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json
openclaw gateway restart
Quick Start
List your workspaces and browse murals:
clawlink_execute_tool --integration mural --tool mural_get_workspaces
Search for a specific mural by name:
clawlink_execute_tool --integration mural --tool mural_search_murals --args '{"query": "sprint retro", "workspaceId": "ws-123"}'
Add a sticky note to a mural:
clawlink_execute_tool --integration mural --tool mural_create_sticky_note --args '{"muralId": "mur-456", "stickies": [{"x": 100, "y": 200, "text": "Action item: Update docs"}]}'
Authentication
Mural uses OAuth 2.0 managed by ClawLink. No API keys are needed. When you connect Mural through the ClawLink dashboard, you authorize access via a standard OAuth login flow. The connection is stored securely and refreshed automatically.
Connect at: https://claw-link.dev/dashboard?add=mural
Connection Management
List connections:
clawlink_list_integrations
Verify connection:
clawlink_execute_tool --integration mural --tool mural_get_current_user
Reconnect: If a connection expires, visit the dashboard URL above and reconnect Mural.
Security & Permissions
- Read operations (browsing workspaces, rooms, murals, widgets, templates, tags) are safe and require no confirmation.
- Write operations (creating sticky notes) modify mural content and require explicit confirmation before execution.
- All operations respect the permissions of the authenticated Mural user.
Tool Reference
User & Authentication
| Tool | Description | Mode |
|---|---|---|
mural_authorization_request |
Initiate OAuth 2.0 authorization process | Read |
mural_get_current_user |
Retrieve authenticated user profile information | Read |
Workspace Operations
| Tool | Description | Mode |
|---|---|---|
mural_get_workspace |
Retrieve details of a specific workspace by ID | Read |
mural_get_workspaces |
List all workspaces the authenticated user belongs to | Read |
Room Operations
| Tool | Description | Mode |
|---|---|---|
mural_get_room |
Retrieve details of a specific room by ID | Read |
mural_list_rooms |
List all rooms within a workspace | Read |
mural_list_open_rooms |
List discoverable open rooms in a workspace | Read |
mural_search_rooms |
Search rooms within a workspace by name or description | Read |
mural_list_room_users |
List members and guests for a room | Read |
Mural Operations
| Tool | Description | Mode |
|---|---|---|
mural_list_room_murals |
List all murals within a room | Read |
mural_list_workspace_murals |
List all murals in a workspace owned or joined by the user | Read |
mural_list_recent_murals |
List recently opened murals in a workspace | Read |
mural_search_murals |
Search murals within a workspace by query text | Read |
mural_create_sticky_note |
Create one or more sticky notes on a mural | Write |
mural_get_mural_widgets |
Retrieve all widgets within a specified mural | Read |
mural_get_files_for_mural |
Retrieve file widgets attached to a mural | Read |
Folder Operations
| Tool | Description | Mode |
|---|---|---|
mural_list_folders |
List all folders within a room | Read |
Template Operations
| Tool | Description | Mode |
|---|---|---|
mural_list_templates |
Retrieve all default Mural templates | Read |
mural_list_workspace_templates |
List default and custom templates for a workspace | Read |
mural_list_recent_templates |
Retrieve recently used templates in a workspace | Read |
mural_search_templates |
Search templates within a workspace by name or keyword | Read |
Tag Operations
| Tool | Description | Mode |
|---|---|---|
mural_list_tags |
Retrieve all tags in a mural | Read |
Code Examples
List workspaces and get murals:
{
"tool": "mural_get_workspaces",
"args": {}
}
Search for murals containing "roadmap":
{
"tool": "mural_search_murals",
"args": {
"query": "roadmap",
"workspaceId": "workspace-uuid-here"
}
}
Add sticky notes to a mural:
{
"tool": "mural_create_sticky_note",
"args": {
"muralId": "mural-uuid-here",
"stickies": [
{"x": 100, "y": 200, "text": "First note"},
{"x": 300, "y": 400, "text": "Second note", "shape": "circle"}
]
}
}
Get all widgets in a mural:
{
"tool": "mural_get_mural_widgets",
"args": {
"muralId": "mural-uuid-here"
}
}
Browse room members:
{
"tool": "mural_list_room_users",
"args": {
"roomId": "room-uuid-here"
}
}
Discovery Workflow
- Call
clawlink_list_integrationsto confirm mural is connected. - Call
clawlink_list_tools --integration muralto see the live catalog. - Start with
mural_get_workspacesto discover available workspaces. - Use
mural_list_roomsto navigate rooms within a workspace. - Use
mural_list_room_muralsormural_search_muralsto find specific murals.
Execution Workflow
Read Flow:
get_workspaces → get_room / list_rooms → list_room_murals → get_mural_widgets
Write Flow:
get_workspaces → search_murals → create_sticky_note (confirm required)
Notes
- Sticky notes require proper x/y coordinates. Always provide a direct array of objects for the
stickiesparameter, not strings or nested objects. - Workspaces, rooms, and murals follow a hierarchy: Workspace > Room > Mural. Navigate top-down.
- The
mural_search_muralstool returns murals the user owns or is a member of, not all murals in the workspace.
Error Handling
| Status / Error | Meaning |
|---|---|
| 401 Unauthorized | OAuth token expired; reconnect Mural from the dashboard |
| 403 Forbidden | User lacks access to the requested workspace, room, or mural |
| 404 Not Found | Invalid workspace, room, or mural ID |
| 429 Too Many Requests | Rate limit exceeded; retry after a short delay |
Troubleshooting
Tools Not Visible
Run clawlink_list_tools --integration mural to verify the integration is active. If empty, reconnect at https://claw-link.dev/dashboard?add=mural.
Invalid Tool Call
Ensure you pass valid UUIDs for workspaceId, roomId, and muralId. These are obtained from parent-level listing tools.
Sticky Note Creation Fails
Verify the stickies parameter is a flat array of objects with x, y, and text fields. Do not wrap in extra objects or pass as strings.
Resources
- Mural API Docs: https://developers.mural.co/public/docs
- ClawLink: https://claw-link.dev
- ClawLink Docs: https://docs.claw-link.dev/openclaw
Powered by ClawLink -- an integration hub for OpenClaw

- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install mural - 安装完成后,直接呼叫该 Skill 的名称或使用
/mural触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Mural 是什么?
Mural API integration with managed OAuth for collaborative whiteboard automation. Browse workspaces, rooms, murals, and templates. Create sticky notes, searc... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 33 次。
如何安装 Mural?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install mural」即可一键安装,无需额外配置。
Mural 是免费的吗?
是的,Mural 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Mural 支持哪些平台?
Mural 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Mural?
由 Jay(@hith3sh)开发并维护,当前版本 v1.0.0。

