@prompthub/mcp
Click on "Deploy 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: MCP Server
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 |
| Read the complete bundled Workflow Runner Contract (no token or network) |
Authoring workflows and runtime runs
PromptHub uses “workflow” at two distinct layers:
An authoring workflow is the reusable static DAG stored in a repository as a
workflowfile. The repo create/get/update/publish tools work with this authoring format.The Workflow Runner Contract governs an agent executing a local run package generated by PromptHub Desktop: frozen
blueprint.json, append-onlyevents.jsonl, andartifacts/.
The canonical public Runner Contract lives in the prompt-hub repository. This package ships a byte-identical,
hash-pinned read-only mirror under docs/contracts/workflow-runner/. Any MCP host can call
prompthub_describe_runner_protocol without a PromptHub token or network access to read the full human-readable
contract, including compatibility, preflight, lifecycle, resume, rerun, and safety rules.
The MCP server only describes this runtime contract. It does not create or execute run packages, write events, monitor Desktop sessions, or make chat-only hosts compatible with local filesystem execution.
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 deployed
Maintenance
Related MCP Connectors
MCP server for progressive tool usage at any scale (see https://klavis.ai)
MCP server for generating rough-draft project plans from natural-language prompts.
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
Related MCP Servers
- AlicenseBqualityAmaintenanceMCP server that exposes any LynxPrompt instance to LLMs, enabling browsing, searching, and managing AI configuration blueprints and prompt hierarchies.647 npm2GPL 3.0
- AlicenseNot gradedqualityDmaintenanceThis MCP server provides access to resources and prompts from GitHub repositories or the local filesystem, enabling teams to share coding standards, documentation, and reusable prompts with AI tools like Claude.221 npm1MIT
- AlicenseNot gradedqualityCmaintenanceMCP server for Langfuse Prompt Management that enables listing and retrieving Langfuse prompts via MCP prompts and tools.MIT
- FlicenseNot gradedqualityCmaintenanceLocal MCP server for Codex to send prompts to ChatGPT Web Pro extension and manage repository tasks safely.1-