Kaneru MCP Tools
Kaneru exposes 24 MCP tools accessible from Claude Desktop, Claude Code, Cursor, or any MCP client. These tools are registered automatically when the MCP Server starts.
Ventures
| Tool | Parameters | Description |
|---|---|---|
kaneru_venture_create | name, prefix, directive?, fuelLimit? | Create a new venture with a name, prefix for mission IDs, optional directive and fuel budget |
kaneru_venture_list | — | List all ventures with their status, mission counts, and fuel usage |
Example:
"Create a venture called Security Audit with prefix SEC and a 10000 fuel limit"
→ calls kaneru_venture_create
Missions
| Tool | Parameters | Description |
|---|---|---|
kaneru_mission_create | venture, title, priority?, description? | Create a mission within a venture. Priorities: critical, high, medium, low |
kaneru_mission_claim | mission, agent, run | Atomically claim a mission for an agent run (optimistic concurrency) |
kaneru_mission_list | venture, status? | List missions for a venture, optionally filtered by status |
kaneru_mission_transition | mission, status, run | Transition a mission to a new lifecycle status |
Example:
"Create a critical mission in venture abc123 to audit the auth module"
→ calls kaneru_mission_create
Fuel
| Tool | Parameters | Description |
|---|---|---|
kaneru_fuel_summary | venture | Show fuel consumption summary — total spend, per-agent breakdown, and budget remaining |
Example:
"How much fuel has the security audit venture consumed?"
→ calls kaneru_fuel_summary
Learning
| Tool | Parameters | Description |
|---|---|---|
kaneru_learn_profile | agent | Show an agent's learning profile — expertise scores by domain and task type |
kaneru_learn_top | domain, taskType | Rank agents by expertise for a specific domain and task type |
Example:
"Show me the top agents for typescript security scanning"
→ calls kaneru_learn_top
Decisions
| Tool | Parameters | Description |
|---|---|---|
kaneru_decisions_list | venture | List recent consensus decisions with outcomes and confidence |
kaneru_decisions_explain | decision | Explain a decision with full reasoning — question, votes, strategy, participants |
Example:
"Explain decision dec-42 with full reasoning"
→ calls kaneru_decisions_explain
Squads
| Tool | Parameters | Description |
|---|---|---|
kaneru_squad_create | name, agents, strategy? | Create a squad (team) of agents. Agents as comma-separated IDs. Strategy: additive (default), replace |
kaneru_squad_run | squad, mission | Start a workflow run on a squad |
kaneru_squad_status | squad | Get squad status — members, strategy, and current state |
Example:
"Create a squad called Security Team with agents scanner, reviewer, and builder"
→ calls kaneru_squad_create
Coordination
| Tool | Parameters | Description |
|---|---|---|
kaneru_delegate | from, to, mission | Delegate a mission from one agent to another, injecting context |
kaneru_consensus | squad, question, strategy? | Run consensus resolution across a squad. Strategies: weighted, majority, unanimous, quorum, byzantine |
kaneru_route | mission, agents?, path? | Route a mission to the best agent via Q-learning + expertise blend |
kaneru_fuse | source, target, strategy? | Merge knowledge between two namespaces. Strategies: additive, replace |
kaneru_mailbox | action, agent, to?, content?, type? | Agent mailbox: send, check, or stats. Message types: task, finding, question, status, knowledge-share, delegation-context |
Example:
"Route this security scan mission to the best available agent"
→ calls kaneru_route
Infrastructure
| Tool | Parameters | Description |
|---|---|---|
kaneru_dojo_list | — | List available venture templates (Dojo) |
kaneru_dojo_install | template, name | Install a Dojo template as a new venture — creates venture, agents, directives, and chain |
kaneru_pulse_trigger | venture, agent, trigger | Trigger a pulse event for an agent. Triggers: timer, assignment, mention, mission-ready, escalation |
kaneru_sync | venture | Sync a venture with P2P peers |
kaneru_terminal_exec | command, cwd? | Execute a terminal command remotely (requires authorization) |
Example:
"Install the security-audit template as My Security Team"
→ calls kaneru_dojo_install
Related
- MCP Server — MCP setup and architecture
- Kaneru Overview — concepts and architecture
- Kaneru CLI — full CLI command reference
- DAG MCP Tools — 10 DAG audit tools