Iroha Live Network
Use this skill when the user wants to inspect or mutate a live Iroha/Torii network through native MCP.
Working rules
- Prefer curated
iroha.*tools. Do not assume the rawtorii.*namespace is available on public deployments. - Stay read-only by default. Only switch to a mutating workflow when the user explicitly asks to change live state.
- Treat
authority,private_key, API tokens, and forwarded auth headers as runtime-only secrets. Never write them to repo files, docs, or commits. - If a tool supports both flat shortcuts and
body, prefer the simplest explicit JSON body that matches the route the user wants to call. - For pre-signed transaction envelopes, use
iroha.transactions.submit_and_wait.
Common live-network flows
- Accounts and aliases:
iroha.accounts.getiroha.accounts.queryiroha.aliases.resolveiroha.accounts.assets
- Contracts:
iroha.contracts.deployiroha.contracts.instance.createiroha.contracts.instance.activateiroha.contracts.call_and_wait
- Governance:
iroha.gov.*
- Transactions:
iroha.transactions.submit_and_waitiroha.transactions.wait
Taira preset
The built-in plugin MCP preset currently targets the primary public Taira MCP endpoint:
https://taira.sora.org/v1/mcp
If your deployment or operator gives you a different public Torii root for the
environment under test, override it locally. If the chosen public root returns
404, the deployment has not enabled Torii MCP yet.
Custom networks
Future Nexus/Torii endpoints should be added as user-local MCP servers rather than committed to the repo plugin manifest.