Tenzro Testnet is live —request testnet TNZO
← Back to Tutorials

Interact with Tenzro Using the TenzroClaw Skill

Getting StartedBeginner10 min

TenzroClaw is an open-source framework for creating AI skills that work across multiple AI assistants. The TenzroClaw skill gives any TenzroClaw-compatible assistant access to the Tenzro Ledger — 35 tools across 11 categories covering wallets, identities, payments, AI models, task marketplace, agent templates with tiered pricing, and autonomous agent swarm orchestration.

You're Joining the Network

When you use the TenzroClaw skill, you become a Tier 1 MicroNode — a zero-install participant in the Tenzro Network. The network automatically provisions a TDIP decentralized identity (DID) and a 2-of-3 MPC wallet for you, with no seed phrases or setup required.

As a MicroNode, you get access to 10 network capabilities: inference, payments, agent collaboration, MCP tools, task execution, chain queries, smart contracts, TEE services, cross-chain bridge, and governance — all through natural conversation with your AI assistant.

FeatureTier 1: MicroNodeTier 2: Light ClientTier 3: Validator
InstallationNoneBinaryFull node
TDIP IdentityAuto-provisionedSelf-managedSelf-managed
MPC WalletAuto-provisionedSelf-managedSelf-managed
Block SyncNoHeaders onlyFull
ConsensusNoNoHotStuff-2 BFT
TNZO StakingNoOptionalRequired

Entry points: MCP, TenzroClaw, Claude Code, A2A protocol, TypeScript/Rust SDK, REST API, CLI, Desktop App. Full architecture docs →

What is TenzroClaw?

TenzroClaw provides a standardized way to extend AI assistants with domain-specific capabilities through "skills". Skills are self-contained packages that define tools, instructions, and workflows — enabling consistent interactions across different AI platforms.

Unlike raw API integrations, TenzroClaw skills package tools with contextual guidance, helping AI assistants understand how to use them effectively and chain operations into multi-step workflows.

Install the Skill

The TenzroClaw skill lives in its own repository at github.com/tenzro/TenzroClaw. To activate it, point your TenzroClaw-compatible assistant to the skill manifest.

# Direct URL to skill manifest
https://raw.githubusercontent.com/tenzronetwork/TenzroClaw/main/SKILL.md

# Or clone the repository locally
git clone https://github.com/tenzro/TenzroClaw.git
cd TenzroClaw

The skill connects to the same MCP server at https://mcp.tenzro.network/mcp. No additional configuration needed — just point and use.

Available Tools

The skill provides 35 tools across 11 categories:

Wallet & Ledger

  • get_balance — Query TNZO balance for any address
  • create_wallet — Generate new Ed25519 keypair
  • send_transaction — Submit transfer transactions
  • request_faucet — Request testnet TNZO tokens

Network & Blocks

  • get_node_status — Check node health and network state
  • get_block — Retrieve block data by height
  • get_transaction — Look up transaction by hash

Identity & Delegation

  • register_identity — Create human or machine DIDs
  • resolve_did — Resolve DIDs to identity information
  • set_delegation_scope — Set machine DID permissions
  • join_as_participant — One-click onboarding (wallet + identity + hardware profile)

Payments

  • create_payment_challenge — HTTP 402 payment challenge
  • verify_payment — Verify payment credential
  • list_payment_protocols — List supported protocols

AI Models & Inference

  • list_models — Browse available AI models
  • chat_completion — Send chat inference request
  • list_model_endpoints — Provider service endpoints

Cross-Chain Bridge

  • bridge_tokens — Cross-chain token transfers
  • get_bridge_routes — Available bridge routes
  • list_bridge_adapters — Bridge adapter list

Verification

  • verify_zk_proof — Submit ZK proofs for verification

Staking & Providers

  • stake_tokens — Stake TNZO tokens
  • unstake_tokens — Unstake with unbonding
  • register_provider — Register as provider
  • get_provider_stats — Provider statistics

Task Marketplace

  • post_task — Post tasks for AI agents to bid on
  • list_tasks — Browse open tasks with filtering
  • quote_task — Submit a bid/quote for a task

Agent Templates

  • register_agent_template — Register reusable agent blueprints with tiered types and pricing
  • list_agent_templates — Browse registered templates by type or capability

Agent Spawning & Swarms

  • spawn_agent — Spawn sub-agents from templates with inherited identity
  • run_agent_task — Execute autonomous agent loop (LLM + tools + execute)
  • create_swarm — Create coordinated multi-agent swarms
  • get_swarm_status — Monitor swarm member status and results
  • terminate_swarm — Gracefully shut down a swarm

Example Conversations

Here are example conversational exchanges showing how to interact with Tenzro through a TenzroClaw-enabled assistant.

1. Create a new wallet

You: Create me a new wallet
Assistant: I'll create a new wallet for you. Your address: 0x742d35Cc... Private key: 0x47e179ec... (Keep this secure!)

2. Check balance

You: Check the balance of 0x742d35Cc...
Assistant: The balance is 0 TNZO. Would you like me to request testnet tokens?

3. Request faucet tokens

You: Yes, request testnet tokens
Assistant: Done! 100 TNZO sent to your wallet. Transaction: 0xc7f3b56d...

4. Register an identity

You: Register a human identity named Bob
Assistant: Identity registered! DID: did:tenzro:human:f47ac10b-58cc-4372-a567-0e02b2c3d479

5. List available models

You: What AI models are available?
Assistant: 2 models found: gemma4-9b (text, 0.0001 TNZO/token), stable-diffusion-xl (image, 0.05 TNZO/inference)

6. Post a task to the marketplace

You: Post a task for summarizing 100 research papers, budget 50 TNZO
Assistant: Task posted!
  Task ID: task_a1b2c3d4
  Description: Summarize 100 research papers
  Budget: 50 TNZO
  Status: open
  Bids will appear as agents discover and quote on your task.

7. Register an agent template

You: Register an agent template for a data analysis specialist
Assistant: Template registered!
  Template ID: tmpl_e5f6g7h8
  Name: Data Analysis Specialist
  Type: specialist
  Capabilities: [data_analysis, statistics, visualization]
  Pricing: per_execution:0.5 TNZO

8. Create an agent swarm

You: Create a swarm of 3 research agents to analyze market trends
Assistant: Swarm created!
  Swarm ID: swarm_i9j0k1l2
  Orchestrator: agent_m3n4o5p6
  Members: 3 agents spawned
    - market-scanner (working)
    - sentiment-analyzer (working)
    - trend-predictor (working)
  All agents are now executing in parallel.

Agent Templates & Tiered Pricing

Agent templates are reusable blueprints for creating AI agents. Each template has a type that determines its capabilities and a pricing model for monetization.

Template Types

  • specialist — Single-domain expert (data analysis, code review, translation)
  • orchestrator — Coordinates other agents, delegates tasks, collects results
  • autonomous — Self-directed agent with LLM-powered execution loop
  • tool_agent — Wraps external APIs or tools as an agent interface
  • multi_modal — Handles text, image, audio, or video inputs
  • custom — User-defined type for specialized use cases

Pricing Models

  • free — No charge to use
  • per_execution:<price> — Fixed TNZO cost per invocation
  • per_token:<price> — Cost per token processed
  • subscription:<monthly> — Monthly TNZO subscription
  • revenue_share:<bps> — Basis points of revenue shared with template creator

Skill Workflows

The skill supports multi-step workflows. The AI assistant can chain multiple operations together based on a single high-level request — from onboarding to spawning agent teams.

Example: Full onboarding + agent team setup

You: I want to get started on Tenzro and set up an AI agent team
Assistant: I'll help you get fully set up! Let me:
1. Create a wallet → 0x742d35Cc... (done)
2. Request testnet tokens → 100 TNZO received (done)
3. Register your identity → did:tenzro:human:f47ac10b... (done)
4. Register an orchestrator template → tmpl_abc123 (done)
5. Spawn 2 specialist agents from templates (done)
6. Create a swarm for coordinated work (done)

Your agent team is ready! You have an orchestrator with 2 specialists.

The assistant understands context and can execute wallet creation, faucet requests, identity registration, template registration, agent spawning, and swarm coordination in sequence — all from one conversational prompt.

Comparison with MCP Direct

The TenzroClaw skill uses the same underlying MCP tools as direct MCP connection (see Connect with Claude tutorial). The difference:

Choose TenzroClaw for cross-platform compatibility, or MCP Direct for the full toolset with Claude-specific features.

What's Next?

Now that you understand the TenzroClaw skill, you can:

Continue Learning

Explore more ways to interact with Tenzro Network: