Rank
83
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
Read-only task graph visualizer for Beads projects — MCP App for Claude Desktop and VS Code Copilot Beads Viz $1 $1 Read-only task graph visualizer for $1 projects. Runs as an MCP App inside Claude Desktop or VS Code Copilot, showing an interactive DAG, list view, and stats dashboard. The UI is **read-only** — all task mutations (create, claim, close) happen through agent chat. Prerequisites - **Node.js** >= 18 (22+ recommended) - **npm** >= 9 - **Beads CLI** (bd) installed and on PATH — $1 - A Beads project (direc Capability contract not published. No trust telemetry is available yet. Last updated 2/25/2026.
Freshness
Last checked 2/25/2026
Best For
beads-viz is best for mcp, mcp-app, mcp-server workflows where MCP compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, GITHUB MCP, runtime-metrics, public facts pack
Read-only task graph visualizer for Beads projects — MCP App for Claude Desktop and VS Code Copilot Beads Viz $1 $1 Read-only task graph visualizer for $1 projects. Runs as an MCP App inside Claude Desktop or VS Code Copilot, showing an interactive DAG, list view, and stats dashboard. The UI is **read-only** — all task mutations (create, claim, close) happen through agent chat. Prerequisites - **Node.js** >= 18 (22+ recommended) - **npm** >= 9 - **Beads CLI** (bd) installed and on PATH — $1 - A Beads project (direc
Public facts
4
Change events
1
Artifacts
0
Freshness
Feb 25, 2026
Capability contract not published. No trust telemetry is available yet. Last updated 2/25/2026.
Trust score
Unknown
Compatibility
MCP
Freshness
Feb 25, 2026
Vendor
Pyros Projects
Artifacts
0
Benchmarks
0
Last release
0.1.2
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Capability contract not published. No trust telemetry is available yet. Last updated 2/25/2026.
Setup snapshot
git clone https://github.com/pyros-projects/beads-viz.gitSetup complexity is MEDIUM. Standard integration tests and API key provisioning are required before connecting this to production workloads.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Pyros Projects
Protocol compatibility
MCP
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
text
Claude Desktop / VS Code Copilot
├── Chat: "Show me the task graph"
│ → calls visualize-tasks tool
├── MCP Server (Node.js, stdio)
│ ├── visualize-tasks → bd list --all --json
│ ├── poll-tasks → fresh data every 3s
│ ├── show-task → task detail by ID
│ └── ui://beads-viz → serves the UI bundle
└── Sandboxed iframe (MCP App)
├── DAG view (ELK.js layered layout)
├── List view (status-grouped)
├── Stats dashboard (progress, velocity)
└── Task detail drawerbash
node --version # v18.0.0+ bd --version # any version bd list --json # should output JSON (run from a Beads project)
json
{
"mcpServers": {
"beads-viz": {
"command": "npx",
"args": ["-y", "beads-viz"],
"cwd": "/path/to/your/beads-project"
}
}
}bash
npm install -g beads-viz
json
{
"mcpServers": {
"beads-viz": {
"command": "beads-viz",
"cwd": "/path/to/your/beads-project"
}
}
}bash
git clone https://github.com/pyros-projects/beads-viz.git cd beads-viz npm install npm run build
Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB MCP
Editorial quality
ready
Read-only task graph visualizer for Beads projects — MCP App for Claude Desktop and VS Code Copilot Beads Viz $1 $1 Read-only task graph visualizer for $1 projects. Runs as an MCP App inside Claude Desktop or VS Code Copilot, showing an interactive DAG, list view, and stats dashboard. The UI is **read-only** — all task mutations (create, claim, close) happen through agent chat. Prerequisites - **Node.js** >= 18 (22+ recommended) - **npm** >= 9 - **Beads CLI** (bd) installed and on PATH — $1 - A Beads project (direc
Read-only task graph visualizer for Beads projects. Runs as an MCP App inside Claude Desktop or VS Code Copilot, showing an interactive DAG, list view, and stats dashboard.
Claude Desktop / VS Code Copilot
├── Chat: "Show me the task graph"
│ → calls visualize-tasks tool
├── MCP Server (Node.js, stdio)
│ ├── visualize-tasks → bd list --all --json
│ ├── poll-tasks → fresh data every 3s
│ ├── show-task → task detail by ID
│ └── ui://beads-viz → serves the UI bundle
└── Sandboxed iframe (MCP App)
├── DAG view (ELK.js layered layout)
├── List view (status-grouped)
├── Stats dashboard (progress, velocity)
└── Task detail drawer
The UI is read-only — all task mutations (create, claim, close) happen through agent chat.
bd) installed and on PATH — install instructions.beads/config.yaml)Verify your setup:
node --version # v18.0.0+
bd --version # any version
bd list --json # should output JSON (run from a Beads project)
The fastest way — no cloning, no building. Just configure your MCP host to use npx:
{
"mcpServers": {
"beads-viz": {
"command": "npx",
"args": ["-y", "beads-viz"],
"cwd": "/path/to/your/beads-project"
}
}
}
npx downloads and caches the package on first run. The -y flag skips the install confirmation prompt.
Where does this go? See the Installation section below for the config file location for your setup (Claude Desktop, VS Code Copilot, WSL, etc.)
If you prefer a permanent install over npx:
npm install -g beads-viz
Then use beads-viz as the command directly:
{
"mcpServers": {
"beads-viz": {
"command": "beads-viz",
"cwd": "/path/to/your/beads-project"
}
}
}
If you prefer to build locally:
git clone https://github.com/pyros-projects/beads-viz.git
cd beads-viz
npm install
npm run build
This produces:
| Output | Description |
|--------|-------------|
| dist/index.html | Self-contained UI bundle (Svelte + ELK.js, single file) |
| dist/server/index.js | MCP server entry point (Node.js, stdio transport) |
Build commands:
| Command | What it does |
|---------|-------------|
| npm run build | Build everything (UI + server) |
| npm run build:ui | Vite build — produces dist/index.html |
| npm run build:server | TypeScript compile — produces dist/server/*.js |
| npm run dev | Vite dev server at localhost:5173 (standalone UI testing) |
The MCP server runs via stdio — the host application (Claude Desktop or VS Code Copilot) starts it as a child process. Configuration depends on where the server runs relative to the host.
Key concept: The
cwdfield determines which Beads project to visualize. The server walks up fromcwdto find.beads/config.yaml.
All examples below show both the npx approach (recommended) and the local build approach. Use whichever you prefer.
The simplest setup. Both Claude Desktop and the server run on the same machine.
Edit ~/.config/claude-desktop/config.json (Linux) or ~/Library/Application Support/Claude/claude_desktop_config.json (macOS):
Using npx (recommended):
{
"mcpServers": {
"beads-viz": {
"command": "npx",
"args": ["-y", "beads-viz"],
"cwd": "/home/dev/projects/myapp"
}
}
}
Using a local build:
{
"mcpServers": {
"beads-viz": {
"command": "node",
"args": ["/home/dev/tools/beads-viz/dist/server/index.js"],
"cwd": "/home/dev/projects/myapp"
}
}
}
If you use nvm and node/npx isn't on PATH for GUI apps, use full paths:
{
"mcpServers": {
"beads-viz": {
"command": "/home/dev/.nvm/versions/node/v22.21.0/bin/npx",
"args": ["-y", "beads-viz"],
"cwd": "/home/dev/projects/myapp"
}
}
}
Node.js and the Beads CLI are installed natively on Windows.
Edit %APPDATA%\Claude\claude_desktop_config.json:
Using npx (recommended):
{
"mcpServers": {
"beads-viz": {
"command": "npx",
"args": ["-y", "beads-viz"],
"cwd": "C:\\Users\\you\\projects\\myapp"
}
}
}
Using a local build:
{
"mcpServers": {
"beads-viz": {
"command": "node",
"args": ["C:\\Users\\you\\tools\\beads-viz\\dist\\server\\index.js"],
"cwd": "C:\\Users\\you\\projects\\myapp"
}
}
}
Use double backslashes (
\\) in JSON paths, or forward slashes (/) — Node.js accepts both on Windows.
This is the recommended setup for WSL users. Claude Desktop runs on Windows, but your Node.js, Beads CLI, and projects live inside WSL.
The trick: use wsl.exe as the command, which bridges into WSL and runs the server there.
Edit %APPDATA%\Claude\claude_desktop_config.json:
Using npx (recommended):
{
"mcpServers": {
"beads-viz": {
"command": "wsl.exe",
"args": [
"bash", "-lc",
"cd /home/dev/projects/myapp && npx -y beads-viz"
]
}
}
}
Using a local build:
{
"mcpServers": {
"beads-viz": {
"command": "wsl.exe",
"args": [
"bash", "-lc",
"cd /home/dev/projects/myapp && node /home/dev/tools/beads-viz/dist/server/index.js"
]
}
}
}
Why bash -lc? The -l flag loads your login shell profile (~/.bashrc, ~/.profile), which sets up nvm, PATH, and other environment variables. Without it, node and bd may not be found.
Why cd ... &&? The cwd field in config.json is a Windows path and won't work inside WSL. Instead, we cd to the project directory inside the bash command.
If you have a specific WSL distro (not the default):
{
"mcpServers": {
"beads-viz": {
"command": "wsl.exe",
"args": [
"-d", "Ubuntu-24.04",
"bash", "-lc",
"cd /home/dev/projects/myapp && npx -y beads-viz"
]
}
}
}
Troubleshooting WSL:
node isn't found, check that nvm loads in ~/.bashrc (not just ~/.bash_profile)bd isn't found, verify it's on your WSL PATH: wsl.exe bash -lc "which bd"wsl.exe bash -lc "cd /home/dev/projects/myapp && node /home/dev/tools/beads-viz/dist/server/index.js"
You should see the server start (it reads from stdin, so it will hang — that's normal). Press Ctrl+C to stop.VS Code with GitHub Copilot Chat can also host MCP Apps, displaying them as interactive panels alongside the chat.
Add to your VS Code settings.json (Ctrl+, → search "mcp" → Edit in settings.json):
Using npx (recommended):
{
"github.copilot.chat.mcp.servers": {
"beads-viz": {
"command": "npx",
"args": ["-y", "beads-viz"],
"cwd": "/absolute/path/to/your/beads-project"
}
}
}
Using a local build:
{
"github.copilot.chat.mcp.servers": {
"beads-viz": {
"command": "node",
"args": ["/absolute/path/to/beads-viz/dist/server/index.js"],
"cwd": "/absolute/path/to/your/beads-project"
}
}
}
You can also add this to workspace settings (.vscode/settings.json) to scope it per project:
{
"github.copilot.chat.mcp.servers": {
"beads-viz": {
"command": "npx",
"args": ["-y", "beads-viz"],
"cwd": "${workspaceFolder}"
}
}
}
Your VS Code runs on Windows, but the project and toolchain live in WSL. Same wsl.exe bridge technique.
Add to your VS Code settings.json:
Using npx (recommended):
{
"github.copilot.chat.mcp.servers": {
"beads-viz": {
"command": "wsl.exe",
"args": [
"bash", "-lc",
"cd /home/dev/projects/myapp && npx -y beads-viz"
]
}
}
}
Using a local build:
{
"github.copilot.chat.mcp.servers": {
"beads-viz": {
"command": "wsl.exe",
"args": [
"bash", "-lc",
"cd /home/dev/projects/myapp && node /home/dev/tools/beads-viz/dist/server/index.js"
]
}
}
}
Workspace settings in WSL projects: If you open a WSL folder in VS Code (via
code .from WSL terminal or the Remote-WSL extension), VS Code may resolve paths differently. See the Remote-WSL section below.
When using the Remote - WSL extension (or the newer WSL extension), VS Code runs its extension host inside WSL. This means MCP servers configured in workspace settings run natively in WSL — no wsl.exe bridge needed.
In your WSL project's .vscode/settings.json:
Using npx (recommended):
{
"github.copilot.chat.mcp.servers": {
"beads-viz": {
"command": "npx",
"args": ["-y", "beads-viz"],
"cwd": "${workspaceFolder}"
}
}
}
Using a local build:
{
"github.copilot.chat.mcp.servers": {
"beads-viz": {
"command": "node",
"args": ["/home/dev/tools/beads-viz/dist/server/index.js"],
"cwd": "${workspaceFolder}"
}
}
}
This is the cleanest approach for WSL users who already use the Remote-WSL workflow. No bridge, no path translation — everything runs natively inside WSL.
| Field | Type | Description |
|-------|------|-------------|
| command | string | Executable to run (npx, beads-viz, node, or wsl.exe) |
| args | string[] | Arguments passed to the command |
| cwd | string | Working directory — the server discovers the Beads project from here |
| env | object | Optional environment variables to set |
The server discovers the Beads project by walking up from cwd to find .beads/config.yaml. If no project is found, the visualize-tasks tool returns an error message.
Once configured, restart your host application (Claude Desktop or VS Code) and ask the agent:
"Show me the task graph"
The agent calls the visualize-tasks tool, which returns a task summary and opens the interactive visualization in a sandboxed iframe.
| View | Description | |------|-------------| | DAG | Dependency graph with ELK.js layered layout. Nodes colored by phase, edges show dependencies. Click a node to see details. | | List | Status-grouped task list: Ready (unblocked), In Progress, Blocked, Done. Click a row for details. | | Stats | Progress ring, status breakdown, phase completion bars, 7-day velocity chart. |
| Key | Action |
|-----|--------|
| Escape | Close the task detail drawer |
| 1 | Switch to DAG view |
| 2 | Switch to List view |
| 3 | Switch to Stats view |
| Tool | Visibility | Description |
|------|-----------|-------------|
| visualize-tasks | Agent (model) | Opens the visualization. Returns task summary + UI reference. |
| poll-tasks | App only | Returns current task data. Called by the UI every 3 seconds. |
| show-task | App only | Returns detailed info for a single task (description, comments, deps). |
"App only" tools are called by the UI iframe via the MCP Apps SDK, not by the agent.
npm run dev
Opens the Vite dev server at http://localhost:5173. The UI runs in standalone mode — no MCP host, no data. The bridge logs a warning and the UI shows an empty state. Useful for styling and layout work.
Build the server, then run it manually:
npm run build
cd /path/to/your/beads-project
node /path/to/beads-viz/dist/server/index.js
The server communicates via stdio (JSON-RPC over stdin/stdout). To test tool calls, you'd need an MCP client or the MCP Inspector.
src/
├── server/ # MCP server (Node.js, compiled with tsc)
│ ├── index.ts # Entry: McpServer + StdioServerTransport
│ ├── tools.ts # Tool registrations (visualize, poll, show)
│ ├── beads-client.ts # bd CLI wrapper (execFile + JSON parse)
│ └── types.ts # Server-side TypeScript types
└── ui/ # Svelte app (browser, bundled with Vite)
├── App.svelte # Root: view switching, layout, keyboard
├── main.ts # Svelte mount + MCP bridge init
├── app.css # CSS variables, theme, animations
├── index.html # Vite entry point
├── components/
│ ├── TopStrip.svelte # 32px strip: project, stats, tabs
│ ├── DagView.svelte # ELK.js DAG canvas + SVG edges
│ ├── DagNode.svelte # 156x42 compact node cards
│ ├── ListView.svelte # Status-grouped task list
│ ├── StatsView.svelte # Progress ring, phase bars, velocity
│ └── TaskDrawer.svelte # Bottom drawer with task details
└── lib/
├── elk-layout.ts # ELK.js layout computation
├── phase.ts # 9-phase color system (dark + light)
├── stores.ts # Svelte writable stores
├── mcp-bridge.ts # MCP Apps SDK bridge
└── types.ts # UI-side TypeScript types
| Component | Technology |
|-----------|-----------|
| MCP server | TypeScript, @modelcontextprotocol/sdk, stdio transport |
| MCP App bridge | @modelcontextprotocol/ext-apps (host theme, tool calls) |
| UI framework | Svelte 5 (runes + stores) |
| DAG layout | ELK.js (layered algorithm) |
| Build | Vite + vite-plugin-singlefile (single HTML output) |
| Bundled UI | ~557 KB gzipped (ELK.js is ~180 KB of that) |
visualize-tasks — server runs bd list --all --json_meta.ui.resourceUri: "ui://beads-viz"ui://beads-viz in a sandboxed iframe, passing the tool result to the UIontoolresult callbackpoll-tasks every 3 seconds via app.callServerTool() for live updatesonhostcontextchangedNodes are colored by their DAG layer using a 9-phase palette (ported from Hangar IDE):
| Phase | Color | Hex |
|-------|-------|-----|
| P1 | Cyan | #38bdf8 |
| P2 | Indigo | #818cf8 |
| P3 | Purple | #c084fc |
| P4 | Pink | #f472b6 |
| P5 | Orange | #fb923c |
| P6 | Yellow | #facc15 |
| P7 | Emerald | #34d399 |
| P8 | Red | #f87171 |
| P9 | Slate | #94a3b8 |
Layer-to-phase mapping: phase = (layer % 9) + 1. Deep graphs wrap around.
The server walks up from cwd looking for .beads/config.yaml. Make sure:
cwd points to a directory inside a Beads project.beads/config.yaml file existsThe server calls bd via execFile. Ensure:
bd is installed and on PATHbd must be on the WSL PATH (not Windows PATH)which bd (or wsl.exe bash -lc "which bd" from Windows)The CLI has a 10-second timeout. This can happen with very large projects. Check:
bd list --all --json runs successfully from the command linenpm run build completed without errorsdist/index.html exists (the UI bundle)npm run dev), empty state is expected — no MCP hostYour login shell profile isn't loading. Ensure:
~/.bashrc (not just ~/.bash_profile or ~/.zshrc)bash -lc flag is present in the args (the -l loads the profile)wsl.exe bash -lc "which node && which bd"The UI adapts to the host's theme via onhostcontextchanged. If colors look wrong:
[data-theme] attribute on <html>MIT
Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/mcp-pyros-projects-beads-viz/snapshot"
curl -s "https://xpersona.co/api/v1/agents/mcp-pyros-projects-beads-viz/contract"
curl -s "https://xpersona.co/api/v1/agents/mcp-pyros-projects-beads-viz/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
83
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Rank
80
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Rank
74
Expose OpenAPI definition endpoints as MCP tools using the official Rust SDK for the Model Context Protocol (https://github.com/modelcontextprotocol/rust-sdk)
Traction
No public download signal
Freshness
Updated 2d ago
Rank
72
An actix_web backend for the official Rust SDK for the Model Context Protocol (https://github.com/modelcontextprotocol/rust-sdk)
Traction
No public download signal
Freshness
Updated 2d ago
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/mcp-pyros-projects-beads-viz/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/mcp-pyros-projects-beads-viz/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/mcp-pyros-projects-beads-viz/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/mcp-pyros-projects-beads-viz/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/mcp-pyros-projects-beads-viz/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/mcp-pyros-projects-beads-viz/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"MCP"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_MCP",
"generatedAt": "2026-04-17T02:08:00.016Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "MCP",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
},
{
"key": "mcp",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "mcp-app",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "mcp-server",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "beads",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "task-graph",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "dag",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "visualization",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "claude-desktop",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "vscode-copilot",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "svelte",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "elkjs",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "cli",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:MCP|unknown|profile capability:mcp|supported|profile capability:mcp-app|supported|profile capability:mcp-server|supported|profile capability:beads|supported|profile capability:task-graph|supported|profile capability:dag|supported|profile capability:visualization|supported|profile capability:claude-desktop|supported|profile capability:vscode-copilot|supported|profile capability:svelte|supported|profile capability:elkjs|supported|profile capability:cli|supported|profile"
}Facts JSON
[
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Pyros Projects",
"href": "https://github.com/pyros-projects/beads-viz",
"sourceUrl": "https://github.com/pyros-projects/beads-viz",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-02-25T03:22:35.288Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "MCP",
"href": "https://xpersona.co/api/v1/agents/mcp-pyros-projects-beads-viz/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/mcp-pyros-projects-beads-viz/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-02-25T03:22:35.288Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/mcp-pyros-projects-beads-viz/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/mcp-pyros-projects-beads-viz/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub · GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to beads-viz and adjacent AI workflows.