gahmen-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
gahmen-mcp by aniruddha-adhikary | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 2 | ★ 85,748 |
| 30d uses | — | — |
| Score | 32 | 77 |
| Official | — | ✓ |
| Categories | DatabasegovernmentDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 11 mo ago | this month |
gahmen-mcp · Summary
MCP server for Singapore government data APIs with search, metadata, and download capabilities.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
gahmen-mcp · Use cases
- Data journalists analyzing Singapore public datasets for reporting
- Researchers accessing filtered government statistics for academic work
- Developers building applications on top of Singapore government open 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
gahmen-mcp · Install
npm installFor Claude Desktop, add this to your config.json:
{
"mcpServers": {
"gahmen": {
"command": "node",
"args": ["path/to/gahmen-mcp/dist/index.js"]
}
}
}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