everything vs mcp-prompts-catalog
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | mcp-prompts-catalog by sparesparrow | |
|---|---|---|
| Stars | ★ 85,748 | ★ 2 |
| 30d uses | — | — |
| Score | 77 | 32 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsProductivityDeveloper Tools |
| Language | TypeScript | JavaScript |
| Last commit | this month | 11 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-prompts-catalog · Summary
A curated catalog of prompts for MCP ecosystem with JSON/YAML/TXT/MD support.
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
mcp-prompts-catalog · Use cases
- Managing prompt libraries in team environments to prevent fragmentation
- Organizing prompts by categories for different use cases
- Automating prompt loading in MCP-compatible applications
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingmcp-prompts-catalog · Install
Install with npm:
npm install @sparesparrow/mcp-prompts-catalogUsage in your MCP project:
const {
getPromptsDir,
getCategories,
listPrompts,
loadPrompt,
} = require('@sparesparrow/mcp-prompts-catalog');
console.log(getPromptsDir()); // Absolute path to prompts directory
console.log(getCategories()); // List of categories
console.log(loadPrompt('development-system-prompt', 'general'));