Mural

Prompts

Mural API integration with managed OAuth for collaborative whiteboard automation. Browse workspaces, rooms, murals, and templates. Create sticky notes, search content, and manage visual collaboration. Use this skill when users want to explore Mural boards, add sticky notes to murals, search murals by keyword, or navigate workspace hierarchies.

Install

openclaw skills install mural

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: InstallStep 2: Pair AccountStep 3: Connect Mural
InstallPairApp-specific connection GIF coming soon
Run the install command in OpenClawSign in and approve the deviceOpen 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

ToolDescriptionMode
mural_authorization_requestInitiate OAuth 2.0 authorization processRead
mural_get_current_userRetrieve authenticated user profile informationRead

Workspace Operations

ToolDescriptionMode
mural_get_workspaceRetrieve details of a specific workspace by IDRead
mural_get_workspacesList all workspaces the authenticated user belongs toRead

Room Operations

ToolDescriptionMode
mural_get_roomRetrieve details of a specific room by IDRead
mural_list_roomsList all rooms within a workspaceRead
mural_list_open_roomsList discoverable open rooms in a workspaceRead
mural_search_roomsSearch rooms within a workspace by name or descriptionRead
mural_list_room_usersList members and guests for a roomRead

Mural Operations

ToolDescriptionMode
mural_list_room_muralsList all murals within a roomRead
mural_list_workspace_muralsList all murals in a workspace owned or joined by the userRead
mural_list_recent_muralsList recently opened murals in a workspaceRead
mural_search_muralsSearch murals within a workspace by query textRead
mural_create_sticky_noteCreate one or more sticky notes on a muralWrite
mural_get_mural_widgetsRetrieve all widgets within a specified muralRead
mural_get_files_for_muralRetrieve file widgets attached to a muralRead

Folder Operations

ToolDescriptionMode
mural_list_foldersList all folders within a roomRead

Template Operations

ToolDescriptionMode
mural_list_templatesRetrieve all default Mural templatesRead
mural_list_workspace_templatesList default and custom templates for a workspaceRead
mural_list_recent_templatesRetrieve recently used templates in a workspaceRead
mural_search_templatesSearch templates within a workspace by name or keywordRead

Tag Operations

ToolDescriptionMode
mural_list_tagsRetrieve all tags in a muralRead

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

  1. Call clawlink_list_integrations to confirm mural is connected.
  2. Call clawlink_list_tools --integration mural to see the live catalog.
  3. Start with mural_get_workspaces to discover available workspaces.
  4. Use mural_list_rooms to navigate rooms within a workspace.
  5. Use mural_list_room_murals or mural_search_murals to 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 stickies parameter, not strings or nested objects.
  • Workspaces, rooms, and murals follow a hierarchy: Workspace > Room > Mural. Navigate top-down.
  • The mural_search_murals tool returns murals the user owns or is a member of, not all murals in the workspace.

Error Handling

Status / ErrorMeaning
401 UnauthorizedOAuth token expired; reconnect Mural from the dashboard
403 ForbiddenUser lacks access to the requested workspace, room, or mural
404 Not FoundInvalid workspace, room, or mural ID
429 Too Many RequestsRate 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


Powered by ClawLink -- an integration hub for OpenClaw

ClawLink Logo