Description

Acts as a proxy server that forwards requests to the prompts.chat API, providing access to a curated collection of thousands of AI prompts. Implements both the prompts protocol for listing and retrieving prompts, as well as custom tools for searching prompts by keyword with filtering options (type, category, tag) and fetching individual prompts by ID. Supports automatic variable substitution for template prompts containing ${variable} syntax.

Installation

git clone https://github.com/f/prompts.chat-mcp

Claude Desktop Configuration

Add this configuration to your Claude Desktop config file to enable this MCP server:

Config file location: ~/Library/Application Support/Claude/claude_desktop_config.json

Config file location: %APPDATA%\Claude\claude_desktop_config.json

Config file location: ~/.config/Claude/claude_desktop_config.json

claude_desktop_config.json
{
  "mcpServers": {
    "promptschat": {
      "command": "node",
      "args": [
        "path/to/server.js"
      ]
    }
  }
}