← 返回
未分类 中文

Mural

Mural API integration with managed OAuth for collaborative whiteboard automation. Browse workspaces, rooms, murals, and templates. Create sticky notes, searc...
Mural API integration with managed OAuth for collaborative whiteboard automation. Browse workspaces, rooms, murals, and templates. Create sticky notes, searc...
hith3sh hith3sh 来源
未分类 clawhub v1.0.1 2 版本 100000 Key: 无需
★ 0
Stars
📥 51
下载
💾 0
安装
2
版本
#latest

概述

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
:---::---::---:
!Install!PairApp-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

  • Mural API Docs: https://developers.mural.co/public/docs
  • ClawLink: https://claw-link.dev/?utm_source=clawhub&utm_medium=referral&utm_content=mural
  • ClawLink Docs: https://docs.claw-link.dev/openclaw

Powered by ClawLink -- an integration hub for OpenClaw

!ClawLink Logo

版本历史

共 2 个版本

  • v1.0.1 当前
    2026-06-11 18:52
  • v1.0.0
    2026-06-09 19:47

安全检测

腾讯云安全 (Keen)

队列中

腾讯云安全 (Sanbu)

队列中

🔗 相关推荐

ai-agent

Agent Browser

rez0
用于 AI 代理的浏览器自动化 CLI。当用户需要与网站交互(包括浏览页面、填写表单、点击按钮、截图等)时使用。
★ 865 📥 343,186
dev-programming

GitHub

hith3sh
通过 GitHub REST 和GraphQL API 与仓库、议题、拉取请求、提交、分支、发布和工作流进行交互。在需要时使用此技能。
★ 33 📥 2,124
ai-agent

self-improving agent

pskoett
记录自身发现以实现自我改进的技能
★ 4,162 📥 932,768