← Back to Skills Marketplace
jolestar

Board Webmcp

by jolestar · GitHub ↗ · v0.1.1 · MIT-0
cross-platform ✓ Security Clean
173
Downloads
0
Stars
1
Active Installs
2
Versions
Install in OpenClaw
/install board-webmcp
Description
Connect to the native board demo through local-mcp and one fixed UXC link. Use when the user wants to inspect or edit the shared board at board.holon.run or...
README (SKILL.md)

Board WebMCP

Use this skill to operate the native board demo through @webmcp-bridge/local-mcp.

Prerequisites

  • uxc is installed and available in PATH.
  • npx is installed and available in PATH.
  • Network access to https://board.holon.run.
  • On a fresh machine, or under an isolated HOME, install Playwright browsers first with npx playwright install.
  • For local board development, point the setup script at http://127.0.0.1:4173.

Core Workflow

  1. Ensure the fixed board link exists:
    • command -v board-webmcp-cli
    • if missing or pointed at the wrong URL, run skills/board-webmcp/scripts/ensure-links.sh
  2. Inspect the bridge and tool schema before calling tools:
    • board-webmcp-cli -h
    • board-webmcp-cli nodes.list -h
    • board-webmcp-cli nodes.upsert -h
  3. Read current board state:
    • non-collaborative automation: board-webmcp-cli nodes.list, board-webmcp-cli edges.list
    • collaborative visible session:
      • board-webmcp-cli bridge.session.mode.set '{"mode":"headed"}'
      • board-webmcp-cli bridge.open
      • board-webmcp-cli nodes.list
      • board-webmcp-cli edges.list
  4. Apply updates with structured inputs:
    • board-webmcp-cli diagram.export format=json
    • collaborative visible session should keep the same runtime in headed
    • board-webmcp-cli nodes.upsert '{"nodes":[{"label":"Fraud Service","kind":"service"}]}'
    • board-webmcp-cli edges.upsert '{"edges":[{"sourceNodeId":"gateway","targetNodeId":"orders","protocol":"grpc"}]}'
    • board-webmcp-cli layout.apply mode=layered
    • board-webmcp-cli diagram.export format=json
  5. When a human is editing or reviewing the same board live:
    • check current state with board-webmcp-cli bridge.session.status
    • if needed, switch to headed with board-webmcp-cli bridge.session.mode.set '{"mode":"headed"}'
    • board-webmcp-cli bridge.open
    • keep all reads and writes on board-webmcp-cli for that same collaborative session
    • board-webmcp-cli selection.get
    • board-webmcp-cli bridge.close
    • if the human closed the board window manually, the headed owner session has ended; run board-webmcp-cli bridge.open again to start a new headed session on the same profile

Default Target

The default public target is:

https://board.holon.run

The default board profile path is:

~/.uxc/webmcp-profile/board

Use the helper script to refresh the link for the public deployment:

skills/board-webmcp/scripts/ensure-links.sh

Use the helper script to point the link at local development instead:

skills/board-webmcp/scripts/ensure-links.sh --url http://127.0.0.1:4173

If the bridge fails to start on a fresh machine or inside an isolated HOME, install Playwright browsers in that environment first:

npx playwright install

Guardrails

  • board.holon.run is a shared demo. Writes are visible on the board surface and persisted in browser storage for that profile.
  • Prefer explicit bridge.session.mode.set over relying on a new launcher invocation to change runtime mode.
  • Before collaborative editing, confirm the runtime is actually headed.
  • If the human closes that window manually, the headed owner session ends. The next board-webmcp-cli bridge.open starts a new headed session on the same profile.
  • Keep the board profile isolated from other sites.
  • Use JSON output for automation. Do not depend on human-formatted text output.

References

  • Common command patterns:
    • references/usage-patterns.md
  • Link creation helper:
    • scripts/ensure-links.sh
Usage Guidance
This skill is coherent with its stated purpose, but review and take these precautions before running it: 1) The SKILL.md and scripts require 'uxc' and 'npx' (and optionally Playwright); the registry metadata incorrectly omitted those requirements—install those tools first. 2) ensure-links.sh uses 'npx' to fetch @webmcp-bridge/local-mcp at runtime; prefer to inspect or pin that package (or vendor it locally) before allowing dynamic npx installs. 3) The script creates a profile directory (~/.uxc/webmcp-profile/board) and registers a daemon/link which may persist and run in the background—run it in an isolated HOME or test environment if you want to avoid side effects. 4) If you need stronger assurance, run the included scripts/validate.sh and manually inspect the npm package source for @webmcp-bridge/local-mcp before use. 5) Do not provide any unrelated credentials; this skill does not require them.
Capability Analysis
Type: OpenClaw Skill Name: board-webmcp Version: 0.1.1 The board-webmcp skill facilitates interaction with a web-based diagramming tool (board.holon.run) via a Model Context Protocol (MCP) bridge. It uses a setup script (scripts/ensure-links.sh) to create a local CLI tool (board-webmcp-cli) that executes a specific NPM package (@webmcp-bridge/local-mcp) and manages a dedicated browser profile in ~/.uxc/webmcp-profile/board. The code and instructions are consistent with the stated purpose of inspecting and editing board nodes and edges, with no evidence of malicious intent, data exfiltration, or unauthorized system access.
Capability Assessment
Purpose & Capability
The skill's name/description (connect to board via local-mcp/UXC) matches the included scripts and SKILL.md. However, registry metadata lists no required binaries/env, while the SKILL.md and scripts clearly require 'uxc' and 'npx' (and recommend Playwright browsers). This mismatch is an implementation inconsistency but not evidence of malicious intent.
Instruction Scope
Instructions are focused on creating/updating a UXC link and using board-webmcp-cli to read/write board state. They instruct the agent/user to run scripts/ensure-links.sh which writes a profile under $HOME (~/.uxc/webmcp-profile/board) and registers a daemon link. The skill does not ask for unrelated files or credentials, but it does create persistent user data and launches/links to an npm package at runtime.
Install Mechanism
There is no formal install spec (instruction-only). At runtime the helper uses npx to invoke @webmcp-bridge/local-mcp, which will dynamically fetch and run code from the npm registry. Using npx is expected for this use-case but increases risk vs. a pinned or audited binary because it downloads code at execution time.
Credentials
The skill does not request credentials or sensitive env vars. It does write to $HOME and uses optional env overrides (WEBMCP_LOCAL_MCP_COMMAND, WEBMCP_DAEMON_IDLE_TTL). No unrelated service keys are requested, so the requested environment access is proportionate to its purpose.
Persistence & Privilege
The helper script registers a UXC link and (by default) a daemon profile under the user's home directory and can create a persistent background runtime (--daemon-exclusive profile). The skill itself is not always: true and will not auto-install unless run, but running the script can create persistent background behavior the user should be aware of.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install board-webmcp
  3. After installation, invoke the skill by name or use /board-webmcp
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v0.1.1
Align skills with explicit bridge presentation mode, single-link site commands, and new X/Google adapter workflows.
v0.1.0
Initial publish from webmcp-bridge repository.
Metadata
Slug board-webmcp
Version 0.1.1
License MIT-0
All-time Installs 1
Active Installs 1
Total Versions 2
Frequently Asked Questions

What is Board Webmcp?

Connect to the native board demo through local-mcp and one fixed UXC link. Use when the user wants to inspect or edit the shared board at board.holon.run or... It is an AI Agent Skill for Claude Code / OpenClaw, with 173 downloads so far.

How do I install Board Webmcp?

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

Is Board Webmcp free?

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

Which platforms does Board Webmcp support?

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

Who created Board Webmcp?

It is built and maintained by jolestar (@jolestar); the current version is v0.1.1.

💬 Comments