memory vs erpnext-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
memory by modelcontextprotocol | erpnext-mcp-server by rakeshgangwar | |
|---|---|---|
| Stars | ★ 85,748 | ★ 90 |
| 30d uses | — | — |
| Score | 77 | 47 |
| Official | ✓ | — |
| Categories | Knowledge GraphAI / LLM ToolsProductivity | ProductivityDeveloper ToolsFinance |
| Language | TypeScript | JavaScript |
| Last commit | this month | 1 mo ago |
memory · Summary
An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.
erpnext-mcp-server · Summary
Connect AI assistants to ERPNext/Frappe systems via MCP for document management and API calls.
memory · Use cases
- Personalizing AI assistant interactions by remembering user preferences, history, and relationships
- Building context-aware chat applications that maintain conversation history
- Creating knowledge bases that persist across AI model sessions
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
memory · Install
Installation
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
}VS Code
Use one-click installation buttons or manually configure in .vscode/mcp.json:
{
"servers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
}Docker
{
"mcpServers": {
"memory": {
"command": "docker",
"args": ["run", "-i", "-v", "claude-memory:/app/dist", "--rm", "mcp/memory"]
}
}
}erpnext-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"
}
}
}
}