web3-research-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
web3-research-mcp by aaronjmars | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 153 | ★ 85,748 |
| 30d uses | — | — |
| Score | 49 | 77 |
| Official | — | ✓ |
| Categories | FinanceWeb ScrapingAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
web3-research-mcp · Summary
A local MCP server for comprehensive cryptocurrency research across multiple sources.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
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
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
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.
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