Tenzro Testnet is live. Get testnet TNZO

Tenzro Hub

The on-chain registry of AI models, skills, agent templates, and tools that power the Tenzro Network. Everything listed is live, discoverable by agents, and callable via JSON-RPC or MCP. All data is fetched dynamically from the network.

Model Registry

Query the Hub via RPC

List skills, agent templates, and tools programmatically via JSON-RPC. Agents can discover and invoke any entry autonomously.

# List all models in the registry
curl https://rpc.tenzro.network \
  -X POST -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","method":"tenzro_listModels","params":[],"id":1}'

# List all skills
curl https://rpc.tenzro.network \
  -X POST -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","method":"tenzro_listSkills","params":[],"id":2}'

# List agent templates
curl https://rpc.tenzro.network \
  -X POST -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","method":"tenzro_listAgentTemplates","params":[],"id":3}'

# List tools (MCP servers)
curl https://rpc.tenzro.network \
  -X POST -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","method":"tenzro_listTools","params":[],"id":4}'