WAIaaS vs fetch
Side-by-side comparison to help you pick between these two MCP servers.
WAIaaS by minhoyoo-iotrust | fetch by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 26 | ★ 85,748 |
| 30d uses | — | — |
| Score | 45 | 76 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsFinanceSecurity | Web ScrapingAI / LLM ToolsProductivity |
| 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.
fetch · Summary
An MCP server that fetches web content and converts HTML to markdown, allowing LLMs to read web pages.
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
fetch · Use cases
- LLMs reading news articles and blogs
- Content analysis of web pages
- Retrieving information from public websites
- Chunked reading of large web documents
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"]
}
}
}fetch · Install
Installation
**Using uv (recommended)** No specific installation needed. Use uvx to run the server directly:
uvx mcp-server-fetch**Using PIP** Install via pip:
pip install mcp-server-fetchThen run as:
python -m mcp_server_fetchClaude Desktop Configuration
{
"mcpServers": {
"fetch": {
"command": "uvx",
"args": ["mcp-server-fetch"]
}
}
}