Sponsored by Deepsite.site

🚀 Claude Custom Prompts MCP Server

Created By
minipuft9 months ago
Claude MCP Server - Intelligent Prompt Orchestration & Management
Content

🚀 Claude Custom Prompts MCP Server

Claude Prompts MCP Server Logo

npm version License: MIT Model Context Protocol Node.js Claude AI

🌟 The Next-Gen Model Context Protocol Server for Claude AI Supercharge your AI workflows with custom prompt templates, chains, and modular organization

🚀 Quick Start📚 Documentation⚡ Features🛠️ Configuration🔗 Claude Setup


🎯 Why Choose This MCP Server?

Transform your Claude experience with enterprise-grade prompt management, intelligent categorization, and seamless workflow automation. Built for developers who think beyond 2024.

🌟 Essential Features

🧠 Intelligent Prompt ManagementDynamic template system with real-time reloadingAdvanced argument validation and type checkingContext-aware placeholder resolution

Next-Gen Workflow EnginePrompt chains for complex multi-step reasoningModular category-based organizationHot-reload capabilities for instant updates

🔮 Future-Ready ArchitectureModel Context Protocol (MCP) native implementationMulti-transport support (STDIO/SSE)Distributed configuration system

🎛️ Developer Experience 3.0Zero-config setup with intelligent defaultsComprehensive API with RESTful endpointsBuilt-in troubleshooting and diagnostics

🎖️ Why Developers Choose This MCP Server

🔥 Battle-Tested Features

  • ✅ 100% Model Context Protocol compliant
  • ✅ Hot-reload prompt templates
  • ✅ Advanced argument validation
  • ✅ Multi-step prompt chains
  • ✅ Context-aware placeholders
  • ✅ Distributed configuration

⚡ Performance & Reliability

  • 🚀 Sub-second cold starts
  • 🚀 < 100ms prompt execution
  • 🚀 100+ concurrent connections
  • 🚀 Auto-recovery mechanisms
  • 🚀 Comprehensive error handling
  • 🚀 Production-ready logging

Lightning Fast Setup

🎯 One-Command Installation

# Clone → Install → Launch in 30 seconds
git clone https://github.com/minipuft/claude-prompts-mcp.git
cd claude-prompts-mcp/server && npm install && npm run build && npm start

🔌 Claude Desktop Integration

Add this configuration to your claude_desktop_config.json:

{
  "mcpServers": {
    "claude-prompts-mcp": {
      "command": "node",
      "args": ["E:\\path\\to\\claude-prompts-mcp\\server\\dist\\index.js"],
      "env": {
        "MCP_PROMPTS_CONFIG_PATH": "E:\\path\\to\\claude-prompts-mcp\\server\\promptsConfig.json"
      }
    }
  }
}

🚀 Instant Usage

# In Claude Desktop
>>friendly_greeting name="Future Developer"
>>content_analysis_chain text="Your content" "innovation"
>>listprompts  # See all available commands

🏗️ System Architecture

graph TB
    A[Claude Desktop] -->|MCP Protocol| B[Transport Layer]
    B --> C[Orchestration Engine]
    C --> D[Prompt Manager]
    C --> E[Chain Executor]
    C --> F[Config Manager]
    D --> G[Template Engine]
    E --> H[Step Processor]
    F --> I[Hot Reload System]

🛠️ Configuration

📋 Server Configuration (config.json)

{
  "server": {
    "name": "Claude Custom Prompts MCP Server",
    "version": "1.0.0",
    "port": 9090
  },
  "prompts": {
    "file": "promptsConfig.json",
    "registrationMode": "name"
  },
  "transports": {
    "default": "stdio",
    "sse": { "enabled": false },
    "stdio": { "enabled": true }
  }
}

🎛️ Prompt Categories (promptsConfig.json)

{
  "categories": [
    {
      "id": "ai-development",
      "name": "AI Development",
      "description": "Next-gen AI prompts"
    },
    {
      "id": "future-code",
      "name": "Future Code",
      "description": "Advanced programming patterns"
    }
  ],
  "imports": [
    "prompts/ai-development/prompts.json",
    "prompts/future-code/prompts.json"
  ]
}

🔗 Advanced Features

🔄 Prompt Chains - Multi-step AI reasoning

Create complex workflows with sequential prompt execution:

# Future Analysis Chain

## User Message Template

Analyze {{topic}} for future implications over {{timeframe}}.

## Chain Steps

1. promptId: research_trends
   stepName: Trend Analysis
   inputMapping: { topic: topic, period: timeframe }
   outputMapping: { trends: current_trends }

2. promptId: predict_evolution
   stepName: Future Prediction
   inputMapping: { trends: current_trends }
   outputMapping: { predictions: future_state }
🎯 Smart Placeholders - Context-aware templates
Based on this conversation context:
{{previous_message}}

Continue the analysis with focus on {{focus_area}}.
🔧 Developer Tools - Built-in management API
# Hot-reload prompts
curl -X POST http://localhost:9090/api/v1/tools/reload_prompts

# Create new prompt
curl -X POST http://localhost:9090/api/v1/tools/update_prompt \
  -d '{"id": "future_prompt", "name": "Future Prompt"...}'

📚 Documentation Hub

GuideDescriptionLevel
🚀 Quick StartGet running in 5 minutesBeginner
🎨 Prompt DesignMaster template creationIntermediate
⛓️ Chain BuildingMulti-step workflowsAdvanced
🏗️ ArchitectureSystem internalsExpert
🔌 API ReferenceComplete API docsReference

🚀 Getting Started

📋 Prerequisites

  • Node.js v16+
  • npm or yarn package manager
  • Claude Desktop application

Quick Installation

# 1. Clone the repository
git clone https://github.com/minipuft/claude-prompts-mcp.git
cd claude-prompts-mcp/server

# 2. Install dependencies
npm install

# 3. Build the project
npm run build

# 4. Start the server
npm start

🔧 Usage Examples

# List all available prompts
>>listprompts

# Execute a simple prompt
>>friendly_greeting name="AI Developer"

# Run a complex chain
>>content_analysis_chain text="Your analysis text" focus="innovation"

# JSON format arguments
>>research_prompt {"topic": "AI trends", "depth": "comprehensive"}

🎯 Use Cases

🚀 For AI Researchers → Streamline experiment prompts → Chain complex reasoning tasks → Version control prompt templates

💼 For Enterprise Teams → Standardize AI interactions → Share prompt libraries → Maintain consistency across projects

🔮 For Future Builders → Rapid prototype AI workflows → Build sophisticated prompt chains → Scale AI-powered applications

🛟 Troubleshooting

🔍 Common Issues & Solutions
IssueSolutionTime to Fix
Prompts not updatingRestart server or use reload_prompts30 seconds
Claude connection failedCheck cwd path in config2 minutes
JSON parsing errorsValidate JSON syntax1 minute
File not foundVerify working directory2 minutes

💡 Pro Tip: Enable debug logging with NODE_ENV=development for detailed diagnostics.

🤝 Contributing to the Future

We welcome contributions from developers building the next generation of AI tools!

# Development setup
git clone https://github.com/minipuft/claude-prompts-mcp.git
cd claude-prompts-mcp/server
npm install
npm run dev  # Watch mode for development

🎯 Current Roadmap:

  • Web UI for prompt management
  • Advanced prompt analytics
  • Multi-model support
  • Cloud sync capabilities

🌐 Community & Support

GitHub Issues GitHub Stars GitHub Forks

💬 Join the conversation: GitHub Discussions 🐛 Report issues: GitHub Issues ⭐ Show support: Star this repo

🏷️ SEO Keywords & Topics

claude-ai model-context-protocol mcp-server prompt-templates ai-workflows prompt-chains claude-desktop anthropic ai-automation prompt-management llm-tools ai-development claude-prompts mcp-tools ai-orchestration prompt-engineering ai-agent conversation-ai prompt-library ai-templates


Built with 🧠 by developers thinking beyond 2024

Licensed under MIT • Built for the future • Powered by Claude AI

⬆️ Back to top

Recommend Servers
TraeBuild with Free GPT-4.1 & Claude 3.7. Fully MCP-Ready.
EdgeOne Pages MCPAn MCP service designed for deploying HTML content to EdgeOne Pages and obtaining an accessible public URL.
Visual Studio Code - Open Source ("Code - OSS")Visual Studio Code
TimeA Model Context Protocol server that provides time and timezone conversion capabilities. This server enables LLMs to get current time information and perform timezone conversions using IANA timezone names, with automatic system timezone detection.
ChatWiseThe second fastest AI chatbot™
BlenderBlenderMCP connects Blender to Claude AI through the Model Context Protocol (MCP), allowing Claude to directly interact with and control Blender. This integration enables prompt assisted 3D modeling, scene creation, and manipulation.
AiimagemultistyleA Model Context Protocol (MCP) server for image generation and manipulation using fal.ai's Stable Diffusion model.
CursorThe AI Code Editor
Zhipu Web SearchZhipu Web Search MCP Server is a search engine specifically designed for large models. It integrates four search engines, allowing users to flexibly compare and switch between them. Building upon the web crawling and ranking capabilities of traditional search engines, it enhances intent recognition capabilities, returning results more suitable for large model processing (such as webpage titles, URLs, summaries, site names, site icons, etc.). This helps AI applications achieve "dynamic knowledge acquisition" and "precise scenario adaptation" capabilities.
DeepChatYour AI Partner on Desktop
Tavily Mcp
Context7Context7 MCP Server -- Up-to-date code documentation for LLMs and AI code editors
MCP AdvisorMCP Advisor & Installation - Use the right MCP server for your needs
Howtocook Mcp基于Anduin2017 / HowToCook (程序员在家做饭指南)的mcp server,帮你推荐菜谱、规划膳食,解决“今天吃什么“的世纪难题; Based on Anduin2017/HowToCook (Programmer's Guide to Cooking at Home), MCP Server helps you recommend recipes, plan meals, and solve the century old problem of "what to eat today"
MiniMax MCPOfficial MiniMax Model Context Protocol (MCP) server that enables interaction with powerful Text to Speech, image generation and video generation APIs.
Serper MCP ServerA Serper MCP Server
Baidu Map百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright McpPlaywright MCP server
WindsurfThe new purpose-built IDE to harness magic
Jina AI MCP ToolsA Model Context Protocol (MCP) server that integrates with Jina AI Search Foundation APIs.
Amap Maps高德地图官方 MCP Server