← Back to Skills Marketplace
hith3sh

Mural

by Jay · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
33
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install mural
Description
Mural API integration with managed OAuth for collaborative whiteboard automation. Browse workspaces, rooms, murals, and templates. Create sticky notes, searc...
README (SKILL.md)

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
Install Pair 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

  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 / 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


Powered by ClawLink -- an integration hub for OpenClaw

ClawLink Logo

Usage Guidance
Before installing, make sure you trust ClawLink to broker OAuth access to your Mural account. The skill is purpose-aligned, but it can read collaboration content available to your account and can add sticky notes when you confirm a write action.
Capability Tags
requires-oauth-tokenrequires-sensitive-credentials
Capability Assessment
Purpose & Capability
The stated purpose is Mural workspace, room, mural, template, and sticky-note automation, and the documented capabilities match that purpose.
Instruction Scope
Runtime instructions are scoped to Mural tools exposed through ClawLink; write behavior is limited to creating sticky notes and is disclosed as requiring explicit confirmation.
Install Mechanism
Installation requires the separate ClawLink plugin, enabling it in OpenClaw, and restarting the gateway; this is disclosed and coherent with the managed OAuth integration model.
Credentials
The skill can access Mural collaboration data visible to the authenticated user, including rooms, murals, widgets, files, tags, templates, and room users; that access is expected for the integration but may include sensitive business content.
Persistence & Privilege
OAuth tokens are handled and refreshed by ClawLink rather than embedded in the skill; users should understand they are authorizing a third-party integration broker to maintain the connection.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install mural
  3. After installation, invoke the skill by name or use /mural
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Mural skill v1.0.0 – Initial release - Integrates Mural collaborative whiteboard API with managed OAuth via ClawLink. - Browse and search workspaces, rooms, murals, widgets, templates, and tags. - Create sticky notes directly on murals (write operations require confirmation). - Streamlined authentication: connect accounts via the ClawLink dashboard, no API keys required. - Includes detailed instructions, tool reference, and troubleshooting for seamless setup and usage.
Metadata
Slug mural
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Mural?

Mural API integration with managed OAuth for collaborative whiteboard automation. Browse workspaces, rooms, murals, and templates. Create sticky notes, searc... It is an AI Agent Skill for Claude Code / OpenClaw, with 33 downloads so far.

How do I install Mural?

Run "/install mural" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Mural free?

Yes, Mural is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Mural support?

Mural is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Mural?

It is built and maintained by Jay (@hith3sh); the current version is v1.0.0.

💬 Comments