Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

Explore

  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Tags index
  • Submit a server
  • Pricing

Learn

  • Guides hub
  • What is MCP?
  • Install guide
  • Troubleshooting
  • Security
  • Blog
  • Blog RSS

Tools

  • All tools
  • Config generator
  • Config validator
  • MCP playground
  • OpenAPI β†’ MCP
  • Badge generator

For agents

  • API docs
  • Trust & traffic
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
  • Remote MCP β†— (opens in a new tab)

Company

  • About
  • Contact
  • X (@AllMCPs) β†— (opens in a new tab)
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on Buildlist
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. πŸ’° Finance & Fintech
  3. Mcp Server Clawhub
M
Health: Not checked yetWe have not completed a health check for this listing yet.Last checked 8/10/2026, 11:44:25 PM

Mcp Server Clawhub

Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View RepositoryVisit Website

ClawHub.ai skill catalog: search, browse, inspect, and download skills (token unlocks publish).

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Install Config Generator

Choose your client
claude_desktop_config.json
{
  "mcpServers": {
    "mcp-server-clawhub": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-server-clawhub"
      ]
    }
  }
}

πŸ’‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

Install Directory Badge Claim listing AlternativesπŸ’° More in Finance & Fintech

Documentation Overview

@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:

ModeTriggerAvailable tools
anonymousCLAWHUB_TOKEN unset10 read-only tools (search, list, get, scan, moderation, file, resolve, download)
authenticatedCLAWHUB_TOKEN setAll 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.

  1. Sign up at aiwerkmcp.com.
  2. Install ClawHub from the catalog. Leave CLAWHUB_TOKEN empty for anonymous mode (10 read-only tools), or paste a token to unlock all 14.
  3. Point your MCP client (Claude.ai, Cursor, Hermes, …) at your hosted endpoint:
    Code
    https://bridge.aiwerk.ch/u/<your-user-id>/mcp
    
    with your Bearer token.

Option 2 β€” Self-hosted (npx)

Run directly β€” you manage the token:

Terminal
npx -y @aiwerk/mcp-server-clawhub

Or in your MCP client config:

config.json
{
  "mcpServers": {
    "clawhub": {
      "command": "npx",
      "args": ["-y", "@aiwerk/mcp-server-clawhub"],
      "env": {
        "CLAWHUB_TOKEN": "optional - unlocks publish/delete/whoami"
      }
    }
  }
}

Tools

Read-only (anonymous + authenticated)

ToolDescription
clawhub_searchSearch skills by query string β€” primary discovery path
clawhub_list_skillsList skills with cursor pagination (see caveat below)
clawhub_get_skillFull details for a skill slug
clawhub_list_versionsList all versions of a skill
clawhub_get_versionGet a specific version (files + security snapshot)
clawhub_get_scanSecurity scan result for a version
clawhub_get_moderationModeration verdict and evidence (response wraps under moderation)
clawhub_get_fileFetch a single raw file from a skill
clawhub_resolveResolve version by content hash
clawhub_downloadDownload skill zip (base64 encoded)

Discovery caveat: the live /skills endpoint applies a default server-side filter that may return an empty items[] for ungated browsing. In practice, prefer clawhub_search β€” it's the reliable entry point for finding skills by keyword. Use clawhub_list_skills with cursor pagination only when you have a specific filter in mind (e.g. nonSuspiciousOnly=true). The highlightedOnly flag is available on clawhub_search but not on clawhub_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 } (not skills)
  • clawhub_list_versions β†’ { items: [...], nextCursor } (not versions)
  • clawhub_get_moderation β†’ { moderation: { verdict, ... } } (wrapped)
  • clawhub_whoami β†’ { user: { handle, ... } } (wrapped)
  • clawhub_get_moderation returns 404 for skills with no moderation events β€” this means clean, not missing. For the always-present verdict, read .moderation from clawhub_get_skill.

Authenticated only (CLAWHUB_TOKEN required)

ToolDescription
clawhub_whoamiCurrent user (handle, displayName, image)
clawhub_publishPublish a new skill version
clawhub_deleteSoft-delete a skill (reversible)
clawhub_undeleteRestore a soft-deleted skill

Environment

VariableRequiredPurpose
CLAWHUB_TOKENnoBearer token issued by clawhub.ai. Unlocks auth-only tools and raises rate limits (120/min β†’ 600/min for reads).
CLAWHUB_BASE_URLnoOverride 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

Terminal
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

Related MCP Servers

View all in Finance & Fintech View all alternatives
  • Plugin logoPlugin

    Circulara Observe MCP plugin - meters your AI agents' token spend and carbon, free tier.

    πŸ’° Finance & Fintech0 views
    Compare vs Plugin β†’
  • S
    Stock Image MCP

    Search and download stock images from Unsplash, Pexels, Pixabay, Freepik, StockVault, and Burst

    πŸ’° Finance & Fintech0 views
    Compare vs Stock Image MCP β†’
  • R
    Ref Tools Ref Tools Mcp

    Provide your AI coding tools with token-efficient access to up-to-date technical documentation for…

    πŸ’° Finance & Fintech0 views
    Compare vs Ref Tools Ref Tools Mcp β†’
  • Mcp Server Ledger logoMcp Server Ledger

    A ledger-cli integration for managing financial transactions and generating reports.

    πŸ’° Finance & Fintech1 views
    Compare vs Mcp Server Ledger β†’

Frequently Asked Questions about Mcp Server Clawhub

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "mcp-server-clawhub": { "command": "npx", "args": ["-y", "mcp-server-clawhub"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewMcp Server Clawhub AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/mcp-server-clawhub?style=directory)](https://allmcps.com/mcp/mcp-server-clawhub)
HTML Embed
<a href="https://allmcps.com/mcp/mcp-server-clawhub"><img src="https://allmcps.com/api/badge/mcp-server-clawhub?style=directory" alt="Mcp Server Clawhub on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ’°Finance & Fintech
More technical detailsExpand β–Ύ
TransportSTDIO
RuntimeNode.js
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
27Quality signal: Emerging Β· 27/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership8/20
Documentation & tools11/30
Adoption & activity1/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

β˜… FeaturedMoxie Docs MCP logo

Moxie Docs MCP

MCP & Agent Skills for Automated Documentation, and codebase conventions + context

Explore Server β†’

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge.

Free dofollow backlink: after claiming, verify your product site and place a dofollow AllMCPs badge β€” we recheck it stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in πŸ’° Finance & Fintech β†’Best MCP servers for Finance & Fintech β†’Alternatives to Mcp Server Clawhub β†’Install in Claude DesktopInstall in CursorInstall in VS Code