@prompthub/mcp
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., "@@prompthub/mcppublish the current session to PromptHub"
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.
prompthub-mcp
MCP server for PromptHub. Publish, fetch, list, update and search prompt repositories from Claude Code or Codex.
1. Get a token
Sign in at https://www.awesome-prompt.com → Settings → API tokens → create a token. Copy the ph_… value (shown once).
Related MCP server: lynxprompt-mcp
2. Configure
Either set an environment variable:
export PROMPTHUB_TOKEN=ph_xxx
# optional, defaults to https://www.awesome-prompt.com
export PROMPTHUB_BASE_URL=https://www.awesome-prompt.com
# optional — force which model search/recommend/publishing prefer (a registry slug,
# e.g. claude-sonnet-4-6). Overrides host auto-detection; handy for multi-model hosts.
export PROMPTHUB_MODEL=claude-sonnet-4-6…or create ~/.prompthub/config.json:
{ "token": "ph_xxx", "baseUrl": "https://www.awesome-prompt.com", "model": "claude-sonnet-4-6" }Environment variables take precedence over the file.
3. Register the server
The server installs straight from this public GitHub repo — no npm registry, no token to pull it.
Recommended — install once, then point at the prompthub-mcp binary (fast startup; builds on install):
npm i -g github:LionelHao/prompthub-mcp
claude mcp add prompthub --env PROMPTHUB_TOKEN=ph_xxx -- prompthub-mcpZero-install alternative — let npx fetch + build the repo on demand (slower cold start, always tracks main):
claude mcp add prompthub --env PROMPTHUB_TOKEN=ph_xxx -- npx -y github:LionelHao/prompthub-mcpCodex — add to ~/.codex/config.toml. After npm i -g github:LionelHao/prompthub-mcp:
[mcp_servers.prompthub]
command = "prompthub-mcp"
env = { PROMPTHUB_TOKEN = "ph_xxx" }Or zero-install (npx fetches + builds on demand):
[mcp_servers.prompthub]
command = "npx"
args = ["-y", "github:LionelHao/prompthub-mcp"]
env = { PROMPTHUB_TOKEN = "ph_xxx" }4. Tools
Tool | What it does |
| Verify the token; show your handle/name |
| Search public repos by keyword (model-aware — see below) |
| Recommend high-usage repos for a task (model-aware) |
| Fetch one repo (owner/name) with its file tree |
| List your repos, or a user's public repos |
| Create a repo from explicit fields |
| Full-replace one of your repos |
| Distill the current session into a reusable repo and publish |
| Show the exact |
Model-aware search & publishing
The server detects which AI model you're working with and tailors results to it — no setup needed:
Detection — inferred from the MCP host (
clientInfo): Claude Code →claude-sonnet-4-6, Codex →gpt-5-5. Priority: per-callmodelarg >PROMPTHUB_MODELenv > host. Unknown / multi-model hosts (e.g. Cursor) fall back toPROMPTHUB_MODEL.Search & recommend —
prompthub_search/prompthub_recommendrank prompts tagged for your model first — a preference, not a filter (model-agnostic prompts still appear). Results carry anappliedModelfield + a short note to relay to the user.Publishing —
prompthub_create_repo/prompthub_publish_session/prompthub_update_repoauto-tag your prompt's text nodes with the current model (only nodes without an explicit model; image/video nodes are left untouched). The reply notes how many nodes were tagged.Override anytime — tell the assistant "find Gemini prompts" (per-call
model), or setPROMPTHUB_MODEL. Runprompthub_whoamito see the detected host + resolved model.
Model slugs/labels come from the live registry at GET /api/v1/models.
5. First run
Confirm it's wired up — ask your assistant:
"Use prompthub_whoami to check my PromptHub login."
You should see your handle. Then publish:
"Publish the prompt we just wrote to PromptHub as a private repo called
my-first-prompt."
The assistant will call prompthub_publish_session and reply with the new repo URL (e.g. https://www.awesome-prompt.com/@you/my-first-prompt). If it's unsure of the format, it can call prompthub_describe_file_format first.
Organize a prompt before publishing
prompthub_organize_prompt(无参,无需令牌)取回「整理提示词」方法论:把原始 prompt 重写得更清晰,
并按 PromptHub 的 {{变量}} 规范模板化,便于他人编辑替换。发布前先调它,再用 create_repo /
publish_session 发布。
作为 Claude Code plugin 安装
本仓同时是 Claude Code plugin(声明了 MCP server + 原生 prompt-organize skill):
claude --plugin-dir /path/to/prompthub-mcp # 本地
# 或 /plugin install <git-url>更新方法论文本后,重新生成 SKILL.md:
PROMPTHUB_BASE_URL=https://www.awesome-prompt.com npm run sync-skillLicense
MIT
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
- 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/LionelHao/prompthub-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server