system-prompts-mcp-server

system-prompts-mcp-server

Model Context Protocol server exposing system prompt files and summaries.

Category
Visit Server

README

System Prompts MCP Server

Expose the prompt collection in this repository as a Model Context Protocol (MCP) server. Each prompt, summary, or tool definition maps to a dedicated MCP tool so your client can fetch the exact configuration it needs (e.g. Devin system prompt, Cursor summary) on demand.

The original prompt archive README now lives under prompts/README.md.


Features

  • Automatic discovery – every text/yaml/json prompt in prompts/ (or any directory you point to) is scanned and exposed as an MCP tool.
  • Model-aware suggestionsget_prompt_suggestion ranks prompts against the LLM you’re using (Claude, GPT, Gemini, etc.) and the keywords you provide.
  • Quick browsinglist_prompts filters by service, flavor (summary, system, tools), or provider hints.
  • Persona activation – each tool call includes a reminder for the model to embody the loaded prompt so it behaves like the original service.
  • Structured responses – tool calls return both raw file contents and metadata (service, variant, path, inferred LLM family, persona hint).

Project Layout

  • src/ – TypeScript MCP server implementation
    • index.ts registers tools (list_prompts, get_prompt_suggestion, plus one tool per prompt file)
    • config/prompts.ts discovers prompt files and infers metadata
    • lib/ helpers for slugging, LLM detection, and ranking
  • dist/ – compiled JavaScript (created by the build step)
  • prompts/ – full prompt library and original documentation

Getting Started

npm install
npm run build

npm install automatically registers this server with Claude Desktop (if present) by updating ~/Library/Application Support/Claude/claude_desktop_config.json. You can opt out by removing the postinstall script from package.json.

Start the server on stdio (suitable for Claude Desktop, Cursor MCP, etc.):

npm run start

Run in watch/dev mode:

npm run dev

Environment variables

  • PROMPT_LIBRARY_ROOT (optional) – override the prompt root. If unset, the server automatically prefers prompts/ (when available) and falls back to the repository root.

MCP Tools

Tool Description
list_prompts Lists available prompts with optional filters (service, flavor, provider, limit).
get_prompt_suggestion Suggests the best prompt for a given LLM/service/keywords, returning ranked alternatives.
<service>-<variant>-<flavor> One tool per prompt resource (e.g. cursor-agent-system or devin-summary). Returns the file contents plus a persona activation hint.

Example:

// Call list_prompts with filters
{
  "name": "list_prompts",
  "arguments": { "service": "cursor", "flavor": "system" },
}
// Ask for a suggestion tailored to Claude
{
  "name": "get_prompt_suggestion",
  "arguments": {
    "userLlm": "claude-3.5-sonnet",
    "keywords": ["code", "pair programming"],
  },
}

Once you have a tool name (e.g. cursor-agent-system), call it with optional format: "json" to receive structured metadata only.


Claude Desktop Integration

Add the server to ~/Library/Application Support/Claude/claude_desktop_config.json:

"system-prompts-mcp": {
  "command": "/Users/<you>/.nvm/versions/node/v22.17.0/bin/node",
  "args": [
    "/Users/<you>/Documents/projects/system-prompts-and-models-of-ai-tools/dist/index.js"
  ],
  "env": {
    "PROMPT_LIBRARY_ROOT": "/Users/<you>/Documents/projects/system-prompts-and-models-of-ai-tools/prompts"
  }
}

Restart Claude Desktop to load the new MCP server, then ask for prompts by name or use the suggestion tool.


Development

  • npm run dev – run with ts-node for quick iteration
  • npm run lint – type-check without emitting files

Contributions welcome—feel free to adapt the discovery logic, add tests, or extend metadata inference for new prompt formats.

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
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
Qdrant Server

Qdrant Server

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

Official
Featured