everything vs fastify-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | fastify-mcp-server by NEDDL | |
|---|---|---|
| Stars | ★ 85,748 | ★ 7 |
| 30d uses | — | — |
| Score | 77 | 41 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsOps & Infra |
| Language | TypeScript | TypeScript |
| Last commit | this month | 1 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
fastify-mcp-server · Summary
High-performance MCP server built with Fastify, TypeScript, and functional programming principles.
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
fastify-mcp-server · Use cases
- Building AI agent platforms requiring secure MCP server connections
- Integrating LLMs with external tools and data sources
- Creating enterprise-grade MCP infrastructure with authentication and monitoring
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-everythingfastify-mcp-server · Install
Installation:
- Clone the repository:
git clone https://github.com/NEDDL/fastify-mcp-server.git - Navigate to the project:
cd fastify-mcp-server - Install dependencies:
pnpm install - Build the project:
pnpm build - Configure environment variables by copying
.env.exampleto.env
For Claude Desktop integration, add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"fastify-mcp-local": {
"command": "node",
"args": ["/absolute/path/to/fastify-mcp-server/dist/mcp-stdio.js"]
}
}
}