WAIaaS vs everything
Side-by-side comparison to help you pick between these two MCP servers.
WAIaaS by minhoyoo-iotrust | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 26 | ★ 85,748 |
| 30d uses | — | — |
| Score | 45 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsFinanceSecurity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 1 mo ago | this month |
WAIaaS · Summary
WAIaaS is a self-hosted wallet daemon that enables AI agents to perform blockchain transactions securely through MCP integration.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
WAIaaS · Use cases
- AI agents performing small on-chain transactions without human approval
- Autonomous trading bots executing DeFi strategies with policy controls
- Multi-agent systems managing shared blockchain wallets with fine-grained permissions
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
WAIaaS · Install
npm install -g @waiaas/cli
waiaas init # Create data directory + config.toml
waiaas start # Start daemon (sets master password on first run)
waiaas quickset --mode mainnet # Create wallets + MCP sessions in one stepFor Claude Desktop, add to your config:
{
"mcpServers": {
"waiaas": {
"command": "npx",
"args": ["@waiaas/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