toolgovern
About
MCP server wrapping the toolgovern CLI for agent-tool policy validation.
Details
- Author
- rudrendupaul
- Categories
- Developer Tools
Jump to
Setup
Install toolgovern in your MCP client (Claude Desktop, Cursor, Windsurf, and others).
Repository: https://github.com/rudrendupaul/toolgovern
Follow the installation instructions in the repository README, then restart your MCP client.
toolgovern-integration-oma-- open-multi-agent-style frameworks
A generic, documented adapter for wrapping a multi-agent framework's tool-executor call site. It is not a submitted or merged integration against any specific upstream project -- it's a working starting point to adapt, not a claim that any framework ships this today.
npm install toolgovern-integration-oma toolgovern
Two shapes, matching the two real patterns frameworks actually use. Start with the first one:
// Per-tool, registration-time wrapping -- the pattern most frameworks with a tool registry // actually use (register one governed tool at a time). import { governedTool } from 'toolgovern-integration-oma'; import { loadPolicy } from 'toolgovern'; const policy = loadPolicy('./toolgovern.policy.yml'); registry.register(governedTool(myTool, policy));
// Dispatcher wrapping -- for frameworks whose tool-executor is a single // runTool(name, args) dispatcher instead of per-tool registration. import { governedExecutor } from 'toolgovern-integration-oma'; import { loadPolicy } from 'toolgovern'; const policy = loadPolicy('./toolgovern.policy.yml'); const executor = governedExecutor(baseExecutor, policy); // wherever your framework currently calls baseExecutor.runTool(name, args) directly, // call executor.runTool(name, args) instead
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.





