Skip to main content
Glama
catancs

dothub

by catancs

dothub

The agent setup hub. Publish your whole coding-agent setup. Browse a feed of other people's. Pull one in with a single approval.


dothub is one FastAPI app that does two things: a web feed you read in the browser, and a remote MCP server your coding agent talks to. Your agent publishes your setup. You browse and install other people's. No upload forms, no export scripts.

It started for Claude Code, but it records provenance for any coding agent (Codex, Cursor, Windsurf, Gemini CLI, and more).

โœจ Why dothub

  • ๐Ÿค– Agent-native publishing. You tell your agent "publish my setup." It gathers your CLAUDE.md, skills, commands, agents, hooks, and MCP config. No form, no manual export.

  • ๐Ÿ”’ Private by default. When your agent publishes, the setup lands private. It is hidden from the feed, search, and every other user. Only you can see it. Nothing goes public until you explicitly click Publish to everyone.

  • ๐Ÿ›ก๏ธ Encrypted at rest. Your setup files are encrypted on the server's disk. They stay invisible to everyone but you until you publish.

  • ๐Ÿ“– Effects manifest, always. Before you install anyone's setup, dothub shows you exactly what it does: every hook command verbatim, the MCP servers and plugins it adds, a runs_code flag, and any secret-looking strings it caught. You review, then you approve.

  • ๐Ÿ  Self-hostable on one box. SQLite and local disk by default. Runs with nothing but Python locally, and deploys to a single small server with automatic HTTPS.

Related MCP server: FastAPI Architect MCP

๐Ÿš€ Quick start (local, zero infra)

git clone https://github.com/catancs/dothub.git
cd dothub
pip install -r requirements.txt

DATABASE_URL='sqlite+pysqlite:///./dothub.db' \
STORAGE_DIR='./dev-bundles' \
SESSION_SECRET='dev-secret' \
uvicorn app.main:app --reload

Then open:

๐Ÿค Add it to Claude Code

Sign up at http://localhost:8000/signup and mint an API key on your account page (it starts with dh_ and is shown once). Then:

claude mcp add --transport http dothub http://localhost:8000/mcp/ \
  --header "Authorization: Bearer dh_your_key_here"

Once it's live, swap in https://dothub.nl/mcp/.

๐Ÿ“ค Publishing your setup

The server never reads your disk. Your agent does. In a Claude Code session, say something like "publish my Claude Code setup to dothub as my-flow." The agent reads your ~/.claude/ (and the project .claude/ if you want), builds a {path: content} map, shows you a preview, and publishes when you approve.

Captured by default

You can tell the agent to

CLAUDE.md, skills/, commands/, agents/

skip a folder ("skip notes/")

hooks/hooks.json, .mcp.json

add a file ("include a README.md")

output-styles/, settings.json, plugins.json

leave out anything with secrets

Never upload secrets. The effects manifest flags patterns like sk-..., AKIA..., and PRIVATE KEY blocks under secret_flags, but you are responsible for leaving tokens and .env files out. Don't publish ~/.claude.json (it holds private state), memory files, or conversation history.

What happens to a setup you publish

  1. Your agent sends it to dothub. It is encrypted and stored.

  2. It lands private. Hidden from the feed and from your public profile. Only you can preview or install it.

  3. You review it on its page. When you are ready, you click Publish to everyone.

  4. It joins the public feed. Others can preview the effects and install it.

๐Ÿ“ฅ Installing someone else's setup

Always preview first. In a Claude Code session: "preview their-slug" to see the effects manifest, review it, then "install their-slug." The agent writes the files to your ~/.claude/ (or project .claude/) only after you approve.

Installing code that runs on your machine (hooks, MCP servers, plugins) is your responsibility. Read the manifest before you say yes.

๐Ÿงช Tests

pytest -v          # in-memory SQLite + mocked S3, no infra needed

๐Ÿšข Deploy

The default production deploy runs the same SQLite + local-disk config on a single AWS EC2 box, with Caddy providing automatic HTTPS. See deploy/DEPLOY.md for the full runbook.

S3 and Postgres are still supported if you ever outgrow one box. Set the values from .env.example and the app switches backends with no code change.

๐Ÿ—‚๏ธ Project layout

app/            FastAPI app: api.py, web/, mcp_server.py, setups.py, bundle.py
deploy/         setup.sh, redeploy.sh, Caddyfile, systemd unit, runbook
alembic/        schema migrations
tests/          pytest suite (in-memory SQLite + moto for S3)
marketing/hero/ standalone Remotion project that renders the README hero GIF

๐Ÿ“ License

Personal project of the author. Not currently licensed for redistribution.

F
license - not found
-
quality - not tested
B
maintenance

Maintenance

โ€“Maintainers
โ€“Response time
โ€“Release cycle
โ€“Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    -
    quality
    B
    maintenance
    The self-hosted MCP bridge between Claude Chat and Claude Code.
    Last updated
    46
    AGPL 3.0
  • A
    license
    A
    quality
    C
    maintenance
    An MCP server that gives Claude Code IDE-level intelligence for FastAPI projects โ€” semantic code navigation, safe renaming, route inspection, dependency trees, and Pydantic model analysis. Instead of Claude reading files blindly, it calls structured tools backed by Jedi (Python language server) and Python's AST.
    Last updated
    9
    1
    MIT
  • A
    license
    -
    quality
    F
    maintenance
    An MCP server that exposes your local Claude Code CLI over HTTP+SSE, enabling any MCP-compatible client to use your Claude Code MAX/PRO subscription remotely.
    Last updated
    30
    1
    MIT

View all related MCP servers

Related MCP Connectors

  • Real-time chat hub for AI agents โ€” Claude Code, Cursor, Cline, Codex over MCP or REST.

  • Real-time chat hub for AI agents โ€” Claude Code, Cursor, Cline, Codex over MCP or REST.

  • Remote MCP server for The Colony โ€” a social network for AI agents (posts, DMs, search, marketplace).

View all MCP Connectors

Latest Blog Posts

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