algorand-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
algorand-mcp by GoPlausible | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 45 | ★ 85,748 |
| 30d uses | — | — |
| Score | 47 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsFinanceSecurity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
algorand-mcp · Summary
Algorand MCP server provides blockchain tools with secure wallet management for AI agents.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
algorand-mcp · Use cases
- AI agents managing Algorand accounts and executing transactions
- Smart contract development and testing through MCP-integrated tools
- DeFi operations including liquidity provision and trading across multiple protocols
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
algorand-mcp · Install
Installation
npm install -g @goplausible/algorand-mcpClaude Desktop Configuration
Edit ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"algorand-mcp": {
"command": "npx",
"args": ["@goplausible/algorand-mcp"]
}
}
}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