model-context-protocol-resources vs everything
Side-by-side comparison to help you pick between these two MCP servers.
model-context-protocol-resources by cyanheads | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 279 | ★ 85,748 |
| 30d uses | — | — |
| Score | 46 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsKnowledge GraphAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | — | TypeScript |
| Last commit | 11 mo ago | this month |
model-context-protocol-resources · Summary
A comprehensive collection of MCP guides, utilities, and server implementations for practical exploration of the Model Context Protocol.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
model-context-protocol-resources · Use cases
- Developers learning MCP protocol through practical examples and guides
- Building custom MCP servers for specific domains like medical research or task management
- Creating MCP clients that integrate multiple server capabilities
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
model-context-protocol-resources · Install
Installation
This repository primarily contains guides, examples, and template code rather than a directly installable server. To get started:
- Clone the repository:
git clone https://github.com/cyanheads/model-context-protocol-resources.git - Navigate to specific server directories (e.g.,
atlas-mcp-server,git-mcp-server) - Follow installation instructions in each server's README
For Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"mcp-ts-template": {
"command": "node",
"args": ["path/to/mcp-ts-template/dist/index.js"]
}
}
}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-everything