Skip to main content
Glama
Zzero-net

Zero Network MCP Server

by Zzero-net
README.md
# Zero Network MCP Server

An MCP server that gives AI agents instant access to Zero Network documentation, integration guides, and utility tools.

## Tools (14)

### Documentation
| Tool | Description |
|------|-------------|
| `zero_overview` | Network overview — what Zero is, core facts, architecture, links |
| `zero_transaction_format` | 136-byte wire format, 48-byte account state, crypto primitives |
| `zero_python_sdk` | Python SDK — install, wallet, send, bridge, env vars |
| `zero_javascript_sdk` | JavaScript SDK — install, wallet, send, env vars |
| `zero_x402_integration` | x402 HTTP payment protocol — server middleware, client auto-pay |
| `zero_mcp_payments` | MCP payment integration — charge per tool call, spending limits |
| `zero_api_reference` | All 8 gRPC endpoints |
| `zero_network_parameters` | Full parameter table — fees, limits, staking, slashing |
| `zero_validator_info` | Validator setup, hardware, staking, economics |
| `zero_security_model` | Security architecture, Trinity Validators, attack mitigations |
| `zero_implementation_guide` | Step-by-step: API paywall, MCP pricing, website paywall |

### Utilities
| Tool | Description |
|------|-------------|
| `zero_convert` | Convert between USD, Z, and units |
| `zero_estimate_cost` | Estimate transaction costs with competitor comparison |
| `zero_pricing_calculator` | Calculate revenue for a Zero-gated service |

## Usage

### Claude Code / Claude Desktop
Add to your MCP config:
```json
{
  "mcpServers": {
    "zero": {
      "command": "uv",
      "args": ["run", "--directory", "/path/to/mcp-server", "python", "-m", "zero_mcp.server"]
    }
  }
}
```

### Direct
```bash
cd mcp-server
uv venv && uv pip install "mcp[cli]>=1.0.0"
source .venv/bin/activate
python -m zero_mcp.server
```

## What Agents Can Do

An AI agent connected to this MCP server can:
1. Learn what Zero is and how it works
2. Get SDK code examples for Python or JavaScript
3. Implement x402 paywalls on their APIs
4. Add per-tool pricing to their MCP servers
5. Convert between USD/Z/units
6. Estimate costs for any transaction volume
7. Calculate revenue projections for paid services

TDQS

A3.6/5.0

Scored across 14 tools

Disambiguation4/5

Most tools have distinct purposes, such as API reference, conversion, cost estimation, and SDK documentation, but there is some overlap between 'zero_implementation_guide', 'zero_mcp_payments', and 'zero_x402_integration', which all cover payment integration aspects and could cause mild confusion. The descriptions help differentiate them, but boundaries are not perfectly clear.

Naming Consistency5/5

All tool names follow a consistent 'zero_' prefix with descriptive snake_case suffixes, such as 'zero_api_reference', 'zero_convert', and 'zero_estimate_cost'. This pattern is maintained throughout all 14 tools, making them predictable and easy to identify.

Tool Count4/5

With 14 tools, the count is reasonable for a server focused on Zero Network documentation, integration, and utilities. It's slightly on the higher side but well-scoped for the domain, covering various aspects like APIs, SDKs, security, and pricing without feeling overly bloated.

Completeness5/5

The tool set provides comprehensive coverage for the Zero Network domain, including API references, SDK documentation (JavaScript and Python), implementation guides, security models, transaction details, and utility tools like conversion and cost estimation. There are no obvious gaps, and it supports a full lifecycle from learning to integration and operation.

Maintenance

ActivityInactive
ResponsivenessNo issues