Help

A quick guide to getting the most out of PromptHub.

Basics

  • Sign in and click “New” in the top bar to create a repository. Single text, multi-file, workflow, and conversation formats are supported.
  • Found a prompt you like? Copy it directly, or fill in its variables in edit mode and send the result straight to Claude or ChatGPT.
  • Star repositories to find them again later; fork to make your own editable copy.

Use PromptHub in Claude Code / Codex (MCP)

With the PromptHub MCP server installed, you can search, pull, and publish prompt repositories right from your coding sessions. First create an access token in Settings, then install:

Claude Code

npm i -g github:LionelHao/prompthub-mcp
claude mcp add prompthub --env PROMPTHUB_TOKEN=ph_xxx -- prompthub-mcp

Codex

# ~/.codex/config.toml
[mcp_servers.prompthub]
command = "prompthub-mcp"
env = { PROMPTHUB_TOKEN = "ph_xxx" }

Replace ph_xxx with the token you created under Settings → Access tokens.

See the GitHub repository for full documentation. GitHub →