everything vs mcp-carbon-calculator
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | mcp-carbon-calculator by prdai | |
|---|---|---|
| Stars | ★ 85,748 | ★ 0 |
| 30d uses | — | — |
| Score | 77 | 33 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsFinanceProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | 7 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-carbon-calculator · Summary
Australian carbon emissions calculator MCP server using official NGA 2024 data with TypeScript implementation.
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
mcp-carbon-calculator · Use cases
- Integrate carbon footprint calculations into AI assistants for sustainability reporting
- Enable automated energy usage analysis with emission factors for Australian households and businesses
- Provide real-time carbon cost estimation tools in applications focusing on climate impact
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-everythingmcp-carbon-calculator · Install
Using the Production Server
Add to your Claude Desktop configuration:
{
"mcpServers": {
"carbon-calculator": {
"command": "npx",
"args": ["mcp-remote", "https://mcp-carbon-calculator.mcp-carbon-calculator.workers.dev/sse"],
"env": {
"NODE_ENV": "production"
}
}
}
}Local Development
git clone https://github.com/Programmer-RD-AI/mcp-carbon-calculator.git
cd mcp-carbon-calculator
npm install
npm run devThe server will be available at http://localhost:8787