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., "@Claude Prompts MCP Serveranalyze @CAGEERF :: 'cite sources'"
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.
Claude Prompts MCP Server
Hot-reloadable prompts, structured reasoning, and chain workflows for your AI assistant.
Quick Start • What You Get • Syntax • Docs
Why
Stop copy-pasting prompts. This server turns your prompt library into a programmable engine:
Version Control — Prompts are YAML + templates in git. Track changes, review diffs.
Hot Reload — Edit a template, run it immediately. No restarts.
Structured Execution — Parses operators, injects methodology, enforces quality gates.
How It Works
The feedback loop: You send a command with operators → Server parses and injects methodology/gates → Claude executes and self-evaluates → Server routes: next step (PASS), retry (FAIL), or return result (done).
Quick Start
Claude Code (Recommended)
Step 1: Add the plugin marketplace (first time only)
Step 2: Install the plugin
Step 3: Try it
The plugin adds hooks that fix common issues:
Problem | Hook Fix |
Model ignores | Detects syntax, suggests correct MCP call |
Chain step forgotten | Injects |
Gate review skipped | Reminds |
Raw MCP works, but models sometimes miss the syntax. The hooks catch that. → hooks/README.md
User Data: Custom prompts stored in ~/.local/share/claude-prompts/ persist across updates.
Gemini CLI
The extension provides:
MCP server with the same tools (
prompt_engine,resource_manager,system_control)GEMINI.md context file with usage documentation
Hooks enhance the experience by detecting >>prompt syntax and tracking chain state. Requires Gemini CLI v0.24.0+.
Step 1: Upgrade Gemini CLI
Step 2: Enable hooks globally
Add to ~/.gemini/settings.json:
Step 3: Verify hooks are working
See hooks/README.md for detailed hook configuration.
Works with the same prompts, gates, and methodologies as Claude Code.
Claude Desktop
Method | Install Time | Updates | Custom Prompts |
Desktop Extension | 10 seconds | Manual | Built-in config |
NPX | 30 seconds | Automatic | Via env vars |
Desktop Extension (one-click):
NPX (auto-updates):
Restart Claude Desktop. Test it:
→ Returns a 4-step research workflow with methodology injection and quality gates.
Other MCP Clients
Add to your MCP config:
Test: resource_manager(resource_type:"prompt", action:"list")
Then point your config to server/dist/index.js.
Transport options: --transport=stdio (default), --transport=streamable-http (recommended for HTTP).
Custom Resources
Use your own prompts without cloning:
Your resources directory can contain: prompts/, gates/, methodologies/, styles/.
Override Method | Example |
All resources |
|
Just prompts |
|
CLI flag (dev) |
|
Priority: CLI flags > individual env vars > MCP_RESOURCES_PATH > package defaults.
See CLI Configuration for all options.
What You Get
🔥 Hot Reload
Edit prompts, test immediately. Better yet—ask Claude to fix them:
🔗 Chains
Break complex tasks into steps with -->:
Each step's output flows to the next. Add quality gates between steps.
🧠 Frameworks
Inject structured thinking patterns:
🛡️ Gates
Quality criteria Claude self-checks:
Failed gates can retry automatically or pause for your decision.
✨ Judge Selection
Let Claude pick the right tools:
Claude analyzes available frameworks, gates, and styles, then applies the best combination.
📜 Version History
Every update is versioned. Compare, rollback, undo:
Syntax Reference
Symbol | Name | What It Does | Example |
| Prompt | Execute template |
|
| Chain | Pipe to next step |
|
| Framework | Inject methodology |
|
| Gate | Add quality criteria |
|
| Modifier | Toggle behavior |
|
| Style | Apply formatting |
|
Modifiers:
%clean— No framework/gate injection%lean— Gates only, skip framework%guided— Force framework injection%judge— Claude selects best resources
Using Gates
Severity | Behavior |
Critical/High | Must pass (blocking) |
Medium/Low | Warns, continues (advisory) |
See Gates Guide for full schema.
Configuration
Customize via server/config.json:
Section | Setting | Default | Description |
|
|
| Prompts directory (hot-reloaded) |
|
| enabled | Auto-inject methodology guidance |
|
|
| Quality gate definitions |
|
|
| Enable |
The Three Tools
Tool | Purpose |
| Execute prompts with frameworks and gates |
| CRUD for prompts, gates, methodologies |
| Status, analytics, health checks |
Documentation
MCP Tooling Guide — Full command reference
Prompt Authoring — Template syntax and schema
Chains — Multi-step workflows
Gates — Quality validation
Architecture — System internals
Contributing
See CONTRIBUTING.md for details.