@aiwerk/mcp-server-clawhub
OfficialClick on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@@aiwerk/mcp-server-clawhubsearch for machine learning skills"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@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 |
| 10 read-only tools (search, list, get, scan, moderation, file, resolve, download) |
authenticated |
| All 14 tools (adds whoami, publish, delete, undelete) |
The authenticated tools are simply not registered in anonymous mode — tools/list will not advertise them.
Related MCP server: mcp-skills
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:
https://bridge.aiwerk.ch/u/<your-user-id>/mcpwith your Bearer token.
Option 2 — Self-hosted (npx)
Run directly — you manage the token:
npx -y @aiwerk/mcp-server-clawhubOr 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 |
| Search skills by query string — primary discovery path |
| List skills with cursor pagination (see caveat below) |
| Full details for a skill slug |
| List all versions of a skill |
| Get a specific version (files + security snapshot) |
| Security scan result for a version |
| Moderation verdict and evidence (response wraps under |
| Fetch a single raw file from a skill |
| Resolve version by content hash |
| 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 |
| Current user (handle, displayName, image) |
| Publish a new skill version |
| Soft-delete a skill (reversible) |
| Restore a soft-deleted skill |
Environment
Variable | Required | Purpose |
| no | Bearer token issued by clawhub.ai. Unlocks auth-only tools and raises rate limits (120/min → 600/min for reads). |
| no | Override the API base URL. Defaults to |
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 testAbout 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
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/AIWerk/mcp-server-clawhub'
If you have feedback or need assistance with the MCP directory API, please join our Discord server