drio
Open app

🚀 Claude Custom Prompts MCP Server

Source

Claude MCP Server - Intelligent Prompt Orchestration & Management

Catalog onlyCatalog onlySTDIO

Overview

Claude Custom Prompts Server is a Node.js application that implements the Model Context Protocol (MCP) for Claude AI models, enabling users to create and manage custom prompt templates in a structured manner.

To use the server, clone the repository, install the dependencies, and start the server. Once running, you can interact with it through the Claude interface by typing commands prefixed with '>>'.

  • Easy integration with Claude AI using MCP - Custom prompt templates defined in Markdown - Support for prompt arguments with validation - Organized prompt categories for better management - Multiple transport options (SSE and STDIO) - Context placeholders for conversation history - Support for prompt chains to manage complex tasks
  1. Creating personalized AI responses for user interactions.
  2. Managing a library of prompts for various applications.
  3. Automating complex workflows through prompt chains.

Add to your AI client

Use these steps to connect 🚀 Claude Custom Prompts MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

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

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

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

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

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

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "claude-prompts-mcp-minipuft": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-claude-prompts-mcp-minipuft"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

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

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

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

FAQ

Can I create my own prompts?

Yes! You can create and manage your own custom prompts using Markdown files.

Is there a limit to the number of prompts I can create?

No, you can create as many prompts as needed, organized by categories.

How do I troubleshoot issues with the server?

Check the server logs for errors and ensure your working directory is set correctly.