system-prompts-mcp-server
Model Context Protocol server exposing system prompt files and summaries.
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 suggestions –
get_prompt_suggestionranks prompts against the LLM you’re using (Claude, GPT, Gemini, etc.) and the keywords you provide. - Quick browsing –
list_promptsfilters 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 implementationindex.tsregisters tools (list_prompts,get_prompt_suggestion, plus one tool per prompt file)config/prompts.tsdiscovers prompt files and infers metadatalib/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 installautomatically registers this server with Claude Desktop (if present) by updating~/Library/Application Support/Claude/claude_desktop_config.json. You can opt out by removing thepostinstallscript frompackage.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 prefersprompts/(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 withts-nodefor quick iterationnpm 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.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。