Claude Prompts

v1.0.0Coding Agentsstable

Enables hot-reloadable prompt templates with structured reasoning frameworks, quality gates, and multi-step chain workflows that can be version-controlled and executed immediately without restarts.

ai-automationai-developmentai-workflowsclaudellm
Share:
150
Stars
0
Downloads
0
Weekly
0/5

What is Claude Prompts?

Claude Prompts is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to enables hot-reloadable prompt templates with structured reasoning frameworks, quality gates, and multi-step chain workflows that can be version-controlled and executed immediately without restarts.

Enables hot-reloadable prompt templates with structured reasoning frameworks, quality gates, and multi-step chain workflows that can be version-controlled and executed immediately without restarts.

This server falls under the Coding Agents category on MCPgee, the world's largest MCP server directory with 33,000+ servers.

Features

  • Enables hot-reloadable prompt templates with structured reas

Use Cases

Create hot-reloadable prompt templates
Implement structured reasoning frameworks
Execute multi-step chain workflows
minipuft

Maintainer

LicenseAGPL-3.0
Languagetypescript
Versionv1.0.0
UpdatedMay 18, 2026
Statushealthy
Maintenanceactive

Works with

ClaudeOpenAIwindowsmacoslinux

Installation

Manual Installation

npx claude-prompts-mcp-server

Configuration

Configuration Details

Config File

claude_desktop_config.json

Performance

Response Metrics

Response Time< 200ms
ThroughputMedium

Resource Usage

Memory UsageLow
CPU UsageLow

How to Set Up and Use Claude Prompts

Claude Prompts MCP Server is a hot-reloadable prompt template engine for Claude that lets you define, version, and chain structured reasoning workflows without restarting your MCP client. It exposes three core tools — prompt_engine, resource_manager, and system_control — enabling you to execute YAML-based prompt templates with built-in reasoning frameworks like CAGEERF, ReACT, and 5W1H. Prompt files live on disk and reload automatically when edited, so you can refine templates and see results instantly. It is ideal for teams that want to version-control AI workflows alongside their code and enforce quality gates on AI responses.

Prerequisites

  • Node.js 18+ (or Bun) installed on your system
  • An MCP client: Claude Desktop, Claude Code, VS Code with MCP extension, or Cursor
  • Git (to version-control your prompt template files)
  • A directory for your custom prompt YAML files (can be initialized by the server)
1

Install via Claude Desktop bundle (easiest path)

Download the `.mcpb` bundle from the GitHub Releases page and drag it into Claude Desktop under Settings → MCP Servers. This is the fastest way to get started with no CLI required.

2

Or add directly to Claude Desktop config

Add the server to your `claude_desktop_config.json` to use the auto-updating npm package. The `--client` flag tells the server which client is calling it.

{
  "mcpServers": {
    "claude-prompts": {
      "command": "npx",
      "args": ["-y", "claude-prompts@latest", "--client", "claude-code"]
    }
  }
}
3

Initialize a custom prompt workspace

Create your own workspace where you can write and version-control YAML prompt templates. This command scaffolds the directory structure.

npx -y claude-prompts@latest --init=~/my-prompts
4

Set environment variables to point to your workspace

Configure the server to use your custom prompts directory by setting MCP_RESOURCES_PATH or MCP_WORKSPACE in the env block of your MCP config.

export MCP_RESOURCES_PATH=/path/to/your/resources
export MCP_WORKSPACE=/path/to/my-prompts
5

Write a YAML prompt template

Create a `.yaml` file in your prompts directory. The file is picked up automatically without restarting the server — hot-reload is built in.

# ~/my-prompts/prompts/code_review.yaml
name: code_review
description: Review code for quality and security issues
template: |
  Review the following code for {{target}}:
  - Check for security vulnerabilities
  - Identify performance issues
  - Suggest improvements
6

Execute a prompt using the operator syntax

In Claude, trigger a prompt template using the `>>` operator followed by the template name and parameters. Chain multiple steps with `-->` or add validation gates with `::`.

>>code_review target:'src/auth.ts' :: 'flag all SQL injection risks'

Claude Prompts Examples

Client configuration (Claude Desktop)

Full configuration block with environment variable overrides for custom prompt and gate directories.

{
  "mcpServers": {
    "claude-prompts": {
      "command": "npx",
      "args": ["-y", "claude-prompts@latest", "--client", "claude-code"],
      "env": {
        "MCP_RESOURCES_PATH": "/Users/you/my-prompts",
        "MCP_PROMPTS_PATH": "/Users/you/my-prompts/prompts",
        "MCP_GATES_PATH": "/Users/you/my-prompts/gates"
      }
    }
  }
}

Prompts to try

Use operator syntax directly in Claude to execute built-in templates, chain steps, and apply reasoning frameworks.

- ">>tech_evaluation_chain library:'zod' context:'API validation'"
- ">>code_review target:'src/' :: 'cite sources for security recommendations'"
- "@CAGEERF Analyze the trade-offs of microservices vs monolith for a startup"
- "List all available prompt templates using system_control"
- "Use resource_manager to create a new prompt template for writing unit tests"

Troubleshooting Claude Prompts

Prompt templates are not reloading after edits

Confirm that MCP_RESOURCES_PATH or MCP_PROMPTS_PATH points to the correct directory containing your YAML files. Hot-reload watches the configured path, so changes outside that directory are not detected.

The `>>` operator syntax is not being recognized by Claude

The operator syntax is a convention for invoking the `prompt_engine` tool. If Claude does not respond to it, try explicitly calling the tool: ask Claude to 'use the prompt_engine tool to execute the code_review template with target set to src/'.

npx command fails to find the package

Run `npx -y claude-prompts@latest --version` to verify the package resolves correctly. If npm registry connectivity is the issue, check your network proxy settings or try clearing the npx cache with `npm cache clean --force`.

Frequently Asked Questions about Claude Prompts

What is Claude Prompts?

Claude Prompts is a Model Context Protocol (MCP) server that enables hot-reloadable prompt templates with structured reasoning frameworks, quality gates, and multi-step chain workflows that can be version-controlled and executed immediately without restarts. It connects AI assistants to external tools and data sources through a standardized interface.

How do I install Claude Prompts?

Follow the installation instructions on the Claude Prompts GitHub repository. Clone the repo, install dependencies, and add the server config to your AI client.

Which AI clients work with Claude Prompts?

Claude Prompts works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.

Is Claude Prompts free to use?

Yes, Claude Prompts is open source and available under the AGPL-3.0 license. You can use it freely in both personal and commercial projects.

Browse More Coding Agents MCP Servers

Explore all coding agents servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.

Quick Config Preview

{ "mcpServers": { "claude-prompts-mcp-server": { "command": "npx", "args": ["-y", "claude-prompts-mcp-server"] } } }

Add this to your claude_desktop_config.json or .cursor/mcp.json

Read the full setup guide →

Ready to use Claude Prompts?

Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.

33,000+ ServersFree & Open SourceStep-by-Step Guides