everything vs hacker-mcp-server-POC
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | hacker-mcp-server-POC by sumitsk-simform | |
|---|---|---|
| Stars | ★ 85,748 | ★ 1 |
| 30d uses | — | — |
| Score | 77 | 33 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Web ScrapingAI / LLM ToolsDeveloper Tools |
| Language | TypeScript | JavaScript |
| Last commit | this month | 5 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
hacker-mcp-server-POC · Summary
A lightweight MCP server exposing Hacker News data as tools for retrieving stories, details, and user profiles.
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
hacker-mcp-server-POC · Use cases
- Integrate Hacker News data into AI assistants to provide up-to-date tech news
- Build custom applications that analyze trending stories or user interactions
- Create educational tools demonstrating MCP integration with external APIs
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-everythinghacker-mcp-server-POC · Install
# Clone the repository
git clone <repository-url>
cd hacker-mcp-server-POC
# Install dependencies
npm install
# Build TypeScript to JavaScript
npm run build
# Run the server
node build/index.jsFor Claude Desktop, add to claude_desktop_config.json:
{
"mcpServers": {
"hacker-news": {
"command": "node",
"args": ["/path/to/hacker-mcp-server-POC/build/index.js"]
}
}
}