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 | — | — |
| Score | 77 | 47 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | ProductivityDeveloper ToolsFinance |
| Language | TypeScript | JavaScript |
| Last commit | this month | 1 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-everythingerpnext-mcp-server · Install
Installation
Install dependencies:
npm installBuild the server:
npm run buildClaude 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"
}
}
}
}