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

ToolParametersDescription
kaneru_venture_createname, prefix, directive?, fuelLimit?Create a new venture with a name, prefix for mission IDs, optional directive and fuel budget
kaneru_venture_listList 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

ToolParametersDescription
kaneru_mission_createventure, title, priority?, description?Create a mission within a venture. Priorities: critical, high, medium, low
kaneru_mission_claimmission, agent, runAtomically claim a mission for an agent run (optimistic concurrency)
kaneru_mission_listventure, status?List missions for a venture, optionally filtered by status
kaneru_mission_transitionmission, status, runTransition 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

ToolParametersDescription
kaneru_fuel_summaryventureShow 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

ToolParametersDescription
kaneru_learn_profileagentShow an agent's learning profile — expertise scores by domain and task type
kaneru_learn_topdomain, taskTypeRank 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

ToolParametersDescription
kaneru_decisions_listventureList recent consensus decisions with outcomes and confidence
kaneru_decisions_explaindecisionExplain a decision with full reasoning — question, votes, strategy, participants

Example:

"Explain decision dec-42 with full reasoning"
→ calls kaneru_decisions_explain

Squads

ToolParametersDescription
kaneru_squad_createname, agents, strategy?Create a squad (team) of agents. Agents as comma-separated IDs. Strategy: additive (default), replace
kaneru_squad_runsquad, missionStart a workflow run on a squad
kaneru_squad_statussquadGet 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

ToolParametersDescription
kaneru_delegatefrom, to, missionDelegate a mission from one agent to another, injecting context
kaneru_consensussquad, question, strategy?Run consensus resolution across a squad. Strategies: weighted, majority, unanimous, quorum, byzantine
kaneru_routemission, agents?, path?Route a mission to the best agent via Q-learning + expertise blend
kaneru_fusesource, target, strategy?Merge knowledge between two namespaces. Strategies: additive, replace
kaneru_mailboxaction, 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

ToolParametersDescription
kaneru_dojo_listList available venture templates (Dojo)
kaneru_dojo_installtemplate, nameInstall a Dojo template as a new venture — creates venture, agents, directives, and chain
kaneru_pulse_triggerventure, agent, triggerTrigger a pulse event for an agent. Triggers: timer, assignment, mention, mission-ready, escalation
kaneru_syncventureSync a venture with P2P peers
kaneru_terminal_execcommand, cwd?Execute a terminal command remotely (requires authorization)

Example:

"Install the security-audit template as My Security Team"
→ calls kaneru_dojo_install