dothub
Click 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., "@dothubpublish my Claude Code setup as my-flow"
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.
dothub — agent setup hub
Publish your whole Claude Code setup, browse a public feed, pull setups in. Remote MCP server + web feed in one FastAPI app.
Run locally (zero-infra, no AWS)
STORAGE_DIR makes bundles go to a local folder instead of S3, and a SQLite
file replaces Postgres — so it runs with nothing but Python:
pip install -r requirements.txt
DATABASE_URL='sqlite+pysqlite:///./dothub.db' STORAGE_DIR='./dev-bundles' \
SESSION_SECRET='dev-secret' uvicorn app.main:app --reloadFor production, leave STORAGE_DIR unset and set the real S3/RDS values from
.env.example (the app then uses S3 + Postgres). See deploy/DEPLOY.md.
Related MCP server: Herald
Test
pytest -v # in-memory SQLite + mocked S3, no infra neededAdd to Claude Code (agent self-push)
Mint a key at POST /api/keys (sign up first), then:
claude mcp add --transport http dothub http://localhost:8000/mcp/ \
--header "Authorization: Bearer dh_your_key"(Use your real https://your-domain.example/mcp/ once deployed.)
Publishing your setup (capture / omit / add)
The server never reads your disk — your agent does. After adding the MCP
server, in a Claude Code session say e.g. "publish my Claude Code setup to
dothub as my-flow". The agent reads your ~/.claude/ (and/or project
.claude/), builds a {path: content} map, and calls the publish_setup
tool.
Captured:
CLAUDE.md,skills/,commands/,agents/,hooks/hooks.json,.mcp.json.Never upload secrets. The effects manifest flags
sk-…,AKIA…, and PRIVATE KEY blocks undersecret_flags, but you are responsible for leaving them out. Don't publish.envor anything with live tokens.Omit: "…but skip
notes/and anything with secrets."Add: "…and include a
README.mddescribing the setup." (a file that isn't in.claude/— the agent just adds it to the map).
Installing someone else's setup
Always preview before installing — the preview shows the effects manifest:
every hook command verbatim, the MCP servers it adds, runs_code, and any
secret_flags. "preview their-slug" → review → "install their-slug". The
agent writes the files locally only after you approve. Installing code that
runs on your machine is your responsibility.
This server cannot be installed
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
- 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/catancs/dothub'
If you have feedback or need assistance with the MCP directory API, please join our Discord server