everything vs ckan-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | ckan-mcp-server by ondata | |
|---|---|---|
| Stars | ★ 85,748 | ★ 46 |
| 30d uses | — | — |
| Score | 77 | 47 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM Toolsdata-systemsSearch |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
ckan-mcp-server · Summary
MCP server for querying CKAN open data portals, enabling natural language access to datasets, organizations, and data.
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
ckan-mcp-server · Use cases
- Journalists searching for data to verify stories
- Researchers exploring public datasets for analysis
- Developers building data pipelines from open data sources
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-everythingckan-mcp-server · Install
Installation
Option 1: Install globally (recommended)
npm install -g @aborruso/ckan-mcp-serverOption 2: Use hosted endpoint (no install)
Server URL: https://ckan-mcp-server.andy-pr.workers.dev/mcp
Claude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"ckan": {
"url": "https://ckan-mcp-server.andy-pr.workers.dev/mcp"
}
}
}