One install. Every agent governed. Works with any MCP-compatible environment, any language, any framework.
Claude Code, Cursor, Lovable, Base44, VS Code, or any MCP-compatible environment.
Zero Friction
Works in any MCP-compatible environment. No npm. No terminal. Just paste.
{
"mcpServers": {
"agentomy": {
"type": "http",
"url": "http://localhost:3000/api/mcp"
}
}
}
Paste into Cursor MCP settings at Settings > MCP Servers
From paste to governed: 90 seconds.
Full Control
TypeScript or Python. Import, configure, govern.
TypeScript
// npm install agentomy-agent@0.1.0 import { GovernancePipeline } from 'agentomy-agent' const pipeline = new GovernancePipeline({ endpoint: process.env.AGENTOMY_ENDPOINT, token: process.env.AGENTOMY_TOKEN, agentId: 'my-agent' }) await pipeline.evaluate({ action: 'data_export' })
Python
# pip install agentomy-guardrail (available via Docker SDK) from agentomy_guardrail import AgentomyGuardrail guard = AgentomyGuardrail( endpoint=os.environ['AGENTOMY_ENDPOINT'], agent_id='my-agent' ) result = guard.check(action='data_export', tier='builder')
Benchmark First
See exactly what governance your agents are missing. Then install Agentomy to close every gap.
# Run GovernanceBench against your agents npx governancebench # See your scores across 5 dimensions # Then install to close the gaps npm install agentomy-agent