npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@claxedo/mcp

v0.4.0

Published

MCP server and CLI for Claxedo documents, WorkGraph, processes, logs, sessions, and browser tools

Readme

Claxedo MCP

Give any MCP-capable agent direct access to a running Claxedo server's WorkGraph, documents, processes, logs, sessions, and browser tools over stdio.

Quickstart

Run it straight from npm — no local checkout, no build step:

npx -y @claxedo/mcp

Point a stdio MCP client at it with a config block like:

{
  "mcpServers": {
    "claxedo": {
      "command": "npx",
      "args": ["-y", "@claxedo/mcp"],
      "env": {
        "CLAXEDO_SERVER_URL": "http://127.0.0.1:3001"
      }
    }
  }
}

command/args/env are the same three fields the Claxedo marketplace config below installs under its own servers key (see mcp.json in this package) — reshape them to whatever top-level key your MCP client expects.

Standalone MCP server for Claxedo runtime tools. Install it from the Claxedo marketplace under MCP Servers instead of relying on an app-managed sidecar.

The default marketplace config launches the published package with npx -y @claxedo/mcp and points it at the local Claxedo server with CLAXEDO_SERVER_URL.

The standalone process is a northbound operator client, so every WorkGraph tool uses the authenticated WorkGraph HTTP contract. Local Claxedo agent Sessions use the same tool schemas through the embedded OpenCode application-tool registry; those calls stay inside Claxedo Server and invoke its WorkGraph service and query ports directly. The embedded registration is enabled for the local-only owner composition. Hosted in-process registration remains fail-closed until a durable Session supplies verified organization-and-user provenance. Signed remote stdio clients authenticate to the HTTP boundary with CLAXEDO_AUTH_TOKEN.

Trust Model

This MCP is a local operator tool. It is meant to run on the same machine as the Claxedo desktop/server loopback endpoint or against an intentionally configured signed remote Claxedo server. Do not expose it as a shared remote MCP endpoint.

Local Claxedo uses the app's loopback trust boundary. The curated marketplace install does not receive a Claxedo user token, JIT token, or broker token. Configure CLAXEDO_AUTH_TOKEN only when intentionally pointing this MCP at a signed remote Claxedo server.

CLAXEDO_SERVER_URL should be a loopback URL such as http://127.0.0.1:3001 for local use. Treat remote URLs as privileged: the MCP will send log, process, session, and browser-control requests to that origin, plus any configured bearer token.

Modes

Full-control mode is the default for backwards compatibility. It registers all tools, including process mutation, log summarization through a temporary agent session, browser navigation, and browser JavaScript evaluation.

Read-only mode is available with either:

CLAXEDO_MCP_MODE=read-only
# or
CLAXEDO_MCP_READ_ONLY=1

Read-only mode registers:

  • get_logs
  • session_messages
  • browser_list_tabs
  • browser_screenshot
  • browser_get_console_logs
  • workgraph_get_defaults
  • workgraph_execution_capabilities
  • workgraph_attention
  • workgraph_list
  • workgraph_get
  • workgraph_source_revision
  • workgraph_source_views when the embedded/HTTP host supports it
  • workgraph_intake when the embedded/HTTP host supports it
  • workgraph_get_candidate when the embedded/HTTP host supports it
  • workgraph_evidence when the embedded/HTTP host supports it
  • workgraph_runs when the embedded/HTTP host supports it
  • workgraph_recap

Read-only mode omits:

  • process
  • summarize_logs
  • browser_evaluate_js
  • browser_navigate

Full-Control Risks

The process tool can create/update/remove .workspace-runtime/processes.jsonc entries and start, stop, restart, or bulk-control long-running commands. A malicious or mistaken MCP client can alter developer workflow state or run commands that bind ports and access local files through those commands.

summarize_logs creates a temporary Claxedo session and sends log text to the configured runtime/model. Logs can contain secrets or customer data; review MCP client prompts and model routing before enabling it for sensitive workspaces.

Browser tools call the Claxedo desktop bridge. browser_evaluate_js only runs when the user has explicitly enabled agent JavaScript for that browser tab, and the bridge returns a denial otherwise. browser_navigate changes the page in a browser pane. Treat both as active browser-control permissions.

Audit Expectations

Run the MCP through a client that shows tool calls before execution when possible. For hosted/remote use, pair CLAXEDO_AUTH_TOKEN with server-side audit logging. Browser bridge mutations are logged by the desktop bridge; read tools are best-effort observability and should not be treated as a complete security audit trail.

Supported environment:

  • CLAXEDO_SERVER_URL: Claxedo server URL. Defaults to http://127.0.0.1:3001.
  • OPENCODE_API_DIR: default local project directory.
  • CLAXEDO_WORKSPACE_ID: default Docker/cloud workspace id.
  • CLAXEDO_SESSION_ID: optional current session id for document path grants.
  • CLAXEDO_AUTH_TOKEN: optional signed remote server bearer token.
  • CLAXEDO_MCP_MODE=read-only or CLAXEDO_MCP_READ_ONLY=1: omit mutating tools.

Current tool surface:

  • documents_list

  • documents_open, which accepts claxedo://document/<id>, an exact id, or an unambiguous display name

  • process

  • get_logs

  • session_messages

  • summarize_logs

  • browser_list_tabs

  • browser_screenshot

  • browser_get_console_logs

  • browser_evaluate_js

  • browser_navigate

  • owner-scoped workgraph_* inspection, source admission, organization, live execution capability, Attention, execution, Decision, evidence, lifecycle, Source View, candidate, and exact source-revision tools. WorkGraph calls use authenticated owner scope independently of process workspace selection. Local embedded tools receive that scope from the local composition; standalone stdio tools receive it from the server's authenticated HTTP boundary. Intake staging returns the immutable source and admission proposal for review, and confirmation uses the same workgraph_admit command as the app. See skills/workgraph/SKILL.md for the current vocabulary.

Documents CLI and skill

The same document contract is available without an MCP client:

claxedo-mcp documents list
claxedo-mcp documents open 'claxedo://document/<id>' --session '<session-id>'

OPENCODE_API_DIR and CLAXEDO_SESSION_ID provide the default project and session. The published package includes skills/claxedo-documents/SKILL.md so agent-extension installation can teach supported harnesses to resolve compact document references instead of copying absolute paths into prompts.