adk-python-mcp-client vs everything
Side-by-side comparison to help you pick between these two MCP servers.
adk-python-mcp-client by arjunprabhulal | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 34 | ★ 85,748 |
| 30d uses | — | — |
| Score | 38 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsCommunication | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 12 mo ago | this month |
adk-python-mcp-client · Summary
Python implementation of ADK as an MCP client for flight search with Gemini 2 LLM.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
adk-python-mcp-client · Use cases
- Building flight search assistants using Google's Gemini model
- Implementing MCP client with ADK for external API integration
- Creating stateful AI agents with dynamic tool discovery
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
adk-python-mcp-client · Install
Installation
- Clone the repository:
git clone https://github.com/arjunprabhulal/adk-python-mcp-client.git
cd adk-python-mcp-client- Set up environment:
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
pip install -r requirements.txt- Configure environment variables:
cp .env.example .env
# Edit .env with your API keys- Run the client:
python client.pyClaude Desktop configuration (if applicable):
{
"mcpServers": {
"adk-python-mcp": {
"command": "python",
"args": ["path/to/client.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