MCP Catalogs
Home

everything vs erpnext-mcp-server

Side-by-side comparison to help you pick between these two MCP servers.

everything
by modelcontextprotocol
erpnext-mcp-server
by rakeshgangwar
Stars★ 85,748★ 90
30d uses
Score7747
Official
Categories
Developer ToolsAI / LLM ToolsOther
ProductivityDeveloper ToolsFinance
LanguageTypeScriptJavaScript
Last committhis month1 mo ago

everything · Summary

Official MCP test server exercising all protocol features for client builders.

erpnext-mcp-server · Summary

Connect AI assistants to ERPNext/Frappe systems via MCP for document management and API calls.

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

erpnext-mcp-server · Use cases

  • AI assistant retrieves customer lists and details from ERPNext to answer customer inquiries
  • Automate document creation and updates in ERPNext through natural language commands
  • Generate reports and business insights by leveraging ERPNext data through AI tools

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

erpnext-mcp-server · Install

Installation

Install dependencies:

npm install

Build the server:

npm run build

Claude Desktop Configuration

Add to your config file:

{
  "mcpServers": {
    "erpnext": {
      "command": "node",
      "args": ["/path/to/erpnext-server/build/index.js"],
      "env": {
        "ERPNEXT_URL": "http://your-erpnext-instance.com",
        "ERPNEXT_API_KEY": "your-api-key",
        "ERPNEXT_API_SECRET": "your-api-secret"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.