quick-mcp-example vs everything
Side-by-side comparison to help you pick between these two MCP servers.
quick-mcp-example by ALucek | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 60 | ★ 85,748 |
| 30d uses | — | — |
| Score | 37 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsOther | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 15 mo ago | this month |
quick-mcp-example · Summary
Minimal example MCP server implementation demonstrating Tools, Resources and Prompts capabilities in Python.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
quick-mcp-example · Use cases
- Educational example for learning MCP protocol implementation
- Starting point for building custom MCP servers with specific tools
- Demonstration of vector database integration through MCP tools
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
quick-mcp-example · Install
Installation
- Clone the repository
git clone https://github.com/ALucek/quick-mcp-example.git
cd quick-mcp-example- Create virtual environment and install dependencies
# Using uv (recommended)
uv venv
source .venv/bin/activate # On macOS/Linux
# OR
.venv\Scripts\activate # On Windows
uv sync- Set up ChromaDB database by following instructions in
MCP_setup.ipynb
- Run the client and server
python client.py mcp_server.pyClaude Desktop Configuration
Add to Claude Desktop config.json:
{
"mcpServers": {
"quick-mcp-example": {
"command": "python",
"args": ["/path/to/quick-mcp-example/mcp_server.py"]
}
}
}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