everything vs MCP-India-Stack
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | MCP-India-Stack by rehan1020 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 19 |
| 30d uses | — | — |
| Score | 77 | 44 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | FinanceAI / LLM ToolsDeveloper Tools |
| Language | TypeScript | Python |
| Last commit | this month | 1 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
MCP-India-Stack · Summary
MCP server for Indian APIs with offline-first lookup tools, zero authentication, and tax calculators for AI agents.
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-India-Stack · Use cases
- Validating Indian business documents like GSTIN, PAN, and IFSC codes for financial transactions
- Calculating income tax, TDS, and GST for financial planning and compliance
- Batch processing vendor/customer data for KYC verification and compliance checks
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-India-Stack · Install
Installation
pip install mcp-india-stackClaude Desktop Configuration
Add the following to your claude_desktop_config.json file:
**Windows** (%APPDATA%\Claude\claude_desktop_config.json):
{
"mcpServers": {
"mcp-india-stack": {
"command": "python",
"args": ["-m", "mcp_india_stack"]
}
}
}**macOS/Linux** (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"mcp-india-stack": {
"command": "python3",
"args": ["-m", "mcp_india_stack"]
}
}
}