npm @aiwerk/mcp-server-clawhubstdioMITupdated 29d ago
MCP server for the ClawHub.ai skill catalog.
What can you do with mcp server clawhub?
@aiwerk/mcp-server-clawhub
MCP server for the ClawHub.ai skill catalog.
Browse, search, inspect, download, and (when authenticated) publish skills from the ClawHub registry through the Model Context Protocol.
Two modes
The server adapts to whether a token is configured:
| Mode | Trigger | Available tools |
|---|---|---|
| anonymous | CLAWHUB_TOKEN unset |
10 read-only tools (search, list, get, scan, moderation, file, resolve, download) |
| authenticated | CLAWHUB_TOKEN set |
All 14 tools (adds whoami, publish, delete, undelete) |
The authenticated tools are simply not registered in anonymous mode — tools/list will not advertise them.
Install
Two ways to run this server — pick the one that fits.
Option 1 — Hosted (zero setup)
No local runtime — if you set a token, it's AES-256-GCM encrypted server-side via HashiCorp Vault.
- Sign up at aiwerkmcp.com.
- Install ClawHub from the catalog. Leave
CLAWHUB_TOKENempty for anonymous mode (10 read-only tools), or paste a token to unlock all 14. - Point your MCP client (Claude.ai, Cursor, Hermes, …) at your hosted endpoint:
with your Bearer token.https://bridge.aiwerk.ch/u/<your-user-id>/mcp
Option 2 — Self-hosted (npx)
Run directly — you manage the token:
npx -y @aiwerk/mcp-server-clawhub
Or in your MCP client config:
{
"mcpServers": {
"clawhub": {
"command": "npx",
"args": ["-y", "@aiwerk/mcp-server-clawhub"],
"env": {
"CLAWHUB_TOKEN": "optional - unlocks publish/delete/whoami"
}
}
}
}
Tools
Read-only (anonymous + authenticated)
| Tool | Description |
|---|---|
clawhub_search |
Search skills by query string — primary discovery path |
clawhub_list_skills |
List skills with cursor pagination (see caveat below) |
clawhub_get_skill |
Full details for a skill slug |
clawhub_list_versions |
List all versions of a skill |
clawhub_get_version |
Get a specific version (files + security snapshot) |
clawhub_get_scan |
Security scan result for a version |
clawhub_get_moderation |
Moderation verdict and evidence (response wraps under moderation) |
clawhub_get_file |
Fetch a single raw file from a skill |
clawhub_resolve |
Resolve version by content hash |
clawhub_download |
Download skill zip (base64 encoded) |
Discovery caveat: the live
/skillsendpoint applies a default server-side filter that may return an emptyitems[]for ungated browsing. In practice, preferclawhub_search— it's the reliable entry point for finding skills by keyword. Useclawhub_list_skillswith cursor pagination only when you have a specific filter in mind (e.g.nonSuspiciousOnly=true). ThehighlightedOnlyflag is available onclawhub_searchbut not onclawhub_list_skills.
Wire shapes worth knowing
Some live API responses differ from the published OpenAPI spec. The types in src/types.ts follow
the real wire shape:
clawhub_list_skills→{ items: [...], nextCursor }(notskills)clawhub_list_versions→{ items: [...], nextCursor }(notversions)clawhub_get_moderation→{ moderation: { verdict, ... } }(wrapped)clawhub_whoami→{ user: { handle, ... } }(wrapped)clawhub_get_moderationreturns 404 for skills with no moderation events — this means clean, not missing. For the always-present verdict, read.moderationfromclawhub_get_skill.
Authenticated only (CLAWHUB_TOKEN required)
| Tool | Description |
|---|---|
clawhub_whoami |
Current user (handle, displayName, image) |
clawhub_publish |
Publish a new skill version |
clawhub_delete |
Soft-delete a skill (reversible) |
clawhub_undelete |
Restore a soft-deleted skill |
Environment
| Variable | Required | Purpose |
|---|---|---|
CLAWHUB_TOKEN |
no | Bearer token issued by clawhub.ai. Unlocks auth-only tools and raises rate limits (120/min → 600/min for reads). |
CLAWHUB_BASE_URL |
no | Override the API base URL. Defaults to https://clawhub.ai/api/v1. |
Rate limits
- Anonymous: 120 reads/min per IP, 30 writes/min per IP
- Authenticated: 600 reads/min per key, 120 writes/min per key
Development
npm install
npm run build
npm test
About AIWerk MCP
Part of the AIWerk MCP platform — curated, signed MCP recipes served either as npm packages for self-hosting or through our multi-tenant hosted bridge (bridge.aiwerk.ch).
Other AIWerk MCP servers:
- @aiwerk/mcp-server-cal — Cal.com scheduling
- @aiwerk/mcp-server-imap — IMAP/SMTP email, provider-agnostic
- @aiwerk/mcp-server-wise — Wise (TransferWise) Personal API, read-only
Browse the full catalog (20+ recipes including GitHub, Linear, Notion, Stripe, …) at aiwerkmcp.com.
License
MIT © AIWerk
Install
Add mcp server clawhub to your client. Pick the one you use.
claude mcp add mcp-server-clawhub -- npx -y @aiwerk/mcp-server-clawhubcodex mcp add mcp-server-clawhub -- npx -y @aiwerk/mcp-server-clawhubamp mcp add mcp-server-clawhub -- npx -y @aiwerk/mcp-server-clawhub{
"mcpServers": {
"mcp-server-clawhub": {
"command": "npx",
"args": [
"-y",
"@aiwerk/mcp-server-clawhub"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"mcp-server-clawhub": {
"command": "npx",
"args": [
"-y",
"@aiwerk/mcp-server-clawhub"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"mcp-server-clawhub","command":"npx","args":["-y","@aiwerk/mcp-server-clawhub"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"mcp-server-clawhub": {
"command": "npx",
"args": [
"-y",
"@aiwerk/mcp-server-clawhub"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"mcp-server-clawhub": {
"command": "npx",
"args": [
"-y",
"@aiwerk/mcp-server-clawhub"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"mcp-server-clawhub": {
"command": "npx",
"args": [
"-y",
"@aiwerk/mcp-server-clawhub"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"mcp-server-clawhub": {
"type": "local",
"command": "npx",
"args": [
"-y",
"@aiwerk/mcp-server-clawhub"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"mcp-server-clawhub": {
"command": {
"path": "npx",
"args": [
"-y",
"@aiwerk/mcp-server-clawhub"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y @aiwerk/mcp-server-clawhubRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
Score
39 / 100
Incomplete
- Documentation25/25
- Maintenance19/25
- Trust13/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 21 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 0.1.4Latest | Jun 24, 2026 |