My Prompts MCP

My Prompts MCP

Lightweight MCP server for providing user prompts defined in Markdown with argument support.

Category
Visit Server

README

My Prompts MCP

GitHub Release

Lightweight MCP server that serves user prompts defined in Markdown files, with support for arguments.

Keep your prompt .md files in a repository — a dedicated git repo or a folder in an existing one — and connect that directory to your AI client via this MCP server. This way your prompts are versioned, shareable, and easy to update across machines and team members.

Example of My Prompts MCP usage with Cherry Studio:

https://github.com/user-attachments/assets/32dfa36d-657f-4b9b-8086-c7a00ffe3185

[!IMPORTANT] This project is developed and maintained by Sergei Predvoditelev. Community support helps keep the project actively developed and well maintained. You can support the project using the following services:

Thank you for your support ❤️

General Usage

Installation

Download the binary for your platform from GitHub Releases.

Create a prompt

Create a .md file in your prompts directory, for example greet.md:

---
description: Greet a person by name
arguments:
  - name: name
    description: The person's name
    required: true
---
Please greet {{name}} in a friendly and professional way.

Connecting to an MCP client

Add the following to your MCP client configuration (stdio transport):

{
  "mcpServers": {
    "my-prompts-mcp": {
      "command": "/path/to/my-prompts-mcp",
      "args": ["--path=/path/to/prompts"]
    }
  }
}

<details> <summary>Claude Desktop</summary>

Edit the claude_desktop_config.json file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • Linux: ~/.config/Claude/claude_desktop_config.json

Add the snippet above to the file, then restart Claude Desktop.

</details>

<details> <summary>Cherry Studio</summary>

Open Settings → MCP Servers, click Add, and fill in the server command and arguments from the snippet above.

</details>

Documentation

Prompt file format

Each .md file in the configured directory is exposed as a prompt. The file name without the .md extension is used as the prompt name by default.

Front matter fields

Optional YAML front matter at the top of the file controls how the prompt is presented to the client.

Field Type Required Description
name string No Prompt name. Defaults to the filename without extension.
title string No Human-readable title.
description string No Short description shown to the AI client.
arguments list No List of arguments (see below).

Arguments

Arguments can be defined in two forms:

Simple (name only):

arguments:
  - arg_name

Full object:

arguments:
  - name: arg_name
    description: What this argument means
    required: true

Each argument field:

Field Type Required Description
name string Yes Argument name.
description string No Description of the argument.
required boolean No Whether the argument is required. Defaults to false.

[!IMPORTANT] Prompts without arguments or with one argument are supported by almost all MCP clients. Prompts with two or more arguments are not universally supported. Known clients that do support multiple arguments:

Placeholders

Use {{arg_name}} in the prompt body. Placeholders are substituted with the argument values provided at request time.

Example prompt file

---
name: name-generator
title: Name Generator
description: Generate a name for a product, project, or company
arguments:
  - name: description
    description: What needs to be named (product, project, company, etc.)
    required: true
  - name: style
    description: Naming style (e.g. minimalist, creative, technical, playful)
    required: false
---
Generate 10 name ideas for: {{description}}.

{{style}}

Requirements for the names:
- Easy to remember and pronounce
- Suitable for use as a domain name
- Unique and distinctive

For each name provide a one-line explanation of why it works.

License

The "My Prompts MCP" is free software. It is released under the terms of the BSD License. Please see LICENSE for more information.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured