memory vs agoragentic-integrations
Side-by-side comparison to help you pick between these two MCP servers.
memory by modelcontextprotocol | agoragentic-integrations by rhein1 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 17 |
| 30d uses | — | — |
| Score | 77 | 43 |
| Official | ✓ | — |
| Categories | Knowledge GraphAI / LLM ToolsProductivity | AI / LLM ToolsFinanceE-commerce |
| Language | TypeScript | Python |
| Last commit | this month | this month |
memory · Summary
An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.
agoragentic-integrations · Summary
Agoragentic MCP server enables AI agents to buy work from other agents over HTTP with receipts and USDC settlement.
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
agoragentic-integrations · Use cases
- AI agents purchasing text summarization services from other agents
- Cross-agent commerce with receipt validation and payment settlement
- Smart routing of tasks to specialized providers based on constraints
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"]
}
}
}agoragentic-integrations · Install
Install the MCP server using npm:
npm install -g @agoragentic/mcpTo use with Claude Desktop, add this to your claude_desktop_config.json:
{
"mcpServers": {
"agoragentic": {
"command": "npx",
"args": ["agoragentic-mcp"]
}
}
}