kaggle-MCP vs everything
Side-by-side comparison to help you pick between these two MCP servers.
kaggle-MCP by Dishant27 | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 9 | ★ 85,748 |
| 30d uses | — | — |
| Score | 34 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper Toolsdata-science | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 14 mo ago | this month |
kaggle-MCP · Summary
MCP server enabling AI assistants to interact with Kaggle competitions through commands and API access.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
kaggle-MCP · Use cases
- Data scientists can quickly download competition datasets without leaving their AI coding environment
- AI assistants can help prepare and submit competition entries through natural language commands
- Researchers can stay updated on Kaggle competitions and track their submission history
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
kaggle-MCP · Install
Installation
- Install prerequisites:
```bash # Install Kaggle CLI pip install kaggle
# Install Node.js 16+ and TypeScript # (follow instructions for your OS) ```
- Get Kaggle API credentials:
- Go to https://www.kaggle.com/account and click "Create New API Token" - This will download a kaggle.json file - Place it in ~/.kaggle/ directory (Linux/Mac) or %USERPROFILE%\.kaggle\ (Windows)
- Install the MCP server:
``bash git clone https://github.com/Dishant27/kaggle-MCP.git cd kaggle-MCP npm install npm run build ``
- Configure Claude Desktop:
``json { "mcpServers": { "kaggle": { "command": "node", "args": ["/path/to/kaggle-MCP/build/index.js"], "env": { "KAGGLE_USERNAME": "your-kaggle-username", "KAGGLE_KEY": "your-kaggle-api-key" } } } } ``
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