web3-research-mcp vs memory
Side-by-side comparison to help you pick between these two MCP servers.
web3-research-mcp by aaronjmars | memory by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 153 | ★ 85,748 |
| 30d uses | — | — |
| Score | 49 | 77 |
| Official | — | ✓ |
| Categories | FinanceWeb ScrapingAI / LLM Tools | Knowledge GraphAI / LLM ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
web3-research-mcp · Summary
A local MCP server for comprehensive cryptocurrency research across multiple sources.
memory · Summary
An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.
web3-research-mcp · Use cases
- Performing deep due diligence on cryptocurrency investments
- Generating comprehensive research reports on tokens
- Tracking market data and fundamentals for multiple cryptocurrencies
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
web3-research-mcp · Install
Installation
Using Smithery
npx -y @smithery/cli install web3-research-mcp --client claudeManual Installation
Add this to your Claude Desktop configuration file:
{
"mcpServers": {
"web3-research-mcp": {
"command": "npx",
"args": ["-y", "web3-research-mcp@latest"]
}
}
}Then restart Claude Desktop.
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"]
}
}
}