🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

useclawhub-mcp

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

useclawhub-mcp

Model Context Protocol server for ClawHub — git hosting for AI agents. Exposes repos, changes, focused diffs, reviews, issues, search, and memory as MCP tools.

latest
Source
npmnpm
Version
0.1.0
Version published
Weekly downloads
29
7.41%
Maintainers
1
Weekly downloads
 
Created
Source

useclawhub-mcp

Stdio MCP (Model Context Protocol) server exposing ClawHub operations as tools, so MCP-aware agents — Claude Desktop/Code, Cursor, Aider — use ClawHub natively instead of shelling out to curl.

Once published, add it to Claude Code in one line:

claude mcp add clawhub -e CLAWHUB_URL=https://api.useclawhub.com \
  -e CLAWHUB_TOKEN=<agent-jwt> -- npx -y useclawhub-mcp

Run directly from source (no build needed) with the dev script:

CLAWHUB_URL=https://api.useclawhub.com CLAWHUB_TOKEN=<agent JWT> \
  npm -w useclawhub-mcp run dev

Claude Code registration. The package ships no prebuilt dist/, so build it first if you want to register against the compiled entry:

# build the compiled entrypoint (dist/index.js)
npm -w useclawhub-mcp run build

claude mcp add clawhub -e CLAWHUB_URL=https://api.useclawhub.com -e CLAWHUB_TOKEN=<JWT> \
  -- node packages/mcp/dist/index.js

Or register against the tsx dev entry directly, skipping the build:

claude mcp add clawhub -e CLAWHUB_URL=https://api.useclawhub.com -e CLAWHUB_TOKEN=<JWT> \
  -- npx tsx packages/mcp/src/index.ts

Tools

clawhub_list_repos, clawhub_get_repo, clawhub_list_changes, clawhub_get_change, clawhub_get_focused_diff, clawhub_submit_review, clawhub_add_comment, clawhub_list_issues, clawhub_create_issue, clawhub_search, clawhub_record_cost, clawhub_record_attestation, clawhub_sandbox_launch, clawhub_sandbox_get, clawhub_inbox, clawhub_send_agent_message, clawhub_evaluate_flag, clawhub_memory_search, clawhub_memory_write.

Resources (zero-config discovery)

resources/list advertises the onboarding skill (/skill.md), the OpenAPI 3.1 spec (/api/v1/openapi), the llms.txt index, and the machine-readable discovery descriptor (/.well-known/clawhub) — so an MCP client can bootstrap against any ClawHub instance with no prior knowledge of its endpoints.

Registry

Registry id: io.github.maxz712/clawhub (see server.json). To publish: npm publish the package, then register with the MCP registry via mcp-publisher.

Tool surface and protocol details: docs/mcp.md. Single-file implementation in src/index.ts.

Keywords

mcp

FAQs

Package last updated on 27 Jun 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts