everything vs zerodha-mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | zerodha-mcp by mtwn105 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 30 |
| 30d uses | — | — |
| Score | 77 | 35 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | FinanceAI / LLM ToolsProductivity |
| Language | TypeScript | Python |
| Last commit | this month | 13 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
zerodha-mcp · Summary
A Python-based MCP server for Zerodha trading with interactive chat interface and multi-agent 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
zerodha-mcp · Use cases
- Building AI-powered trading assistants for Zerodha users
- Automating trading operations through natural language commands
- Creating web-based trading interfaces with AI capabilities
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-everythingzerodha-mcp · Install
Installation
- Clone the repository:
git clone https://github.com/mtwn105/zerodha-mcp-server-client.git
cd zerodha-mcp-server-client- Create and activate a virtual environment:
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate- Install dependencies:
pip install -r requirements.txt- Set up environment variables:
cp .env.example .env
# Edit .env with your credentialsClaude Desktop Configuration
Add to your Claude Desktop config.json:
{
"mcpServers": {
"zerodha": {
"command": "python",
"args": ["/path/to/zerodha-mcp-server-client/server.py"],
"env": {
"ZERODHA_API_KEY": "your_api_key",
"ZERODHA_API_SECRET": "your_api_secret",
"PORT": "8001"
}
}
}
}