Agents

Agents

Maybe Don’t supports multiple integration points for AI coding agents. This section covers how to connect your agent to the gateway for policy enforcement, auditing, and observability.

Choosing an Integration

ApproachMCP ToolsCLI ToolsNotes
MCP Gateway + Hooks (recommended)MCP gateway proxyHooks via intercept endpointBest coverage. MCP gateway intercepts responses before they reach the agent. Hooks enforce CLI commands deterministically.
Hooks onlyHooks via intercept endpointHooks via intercept endpointSimpler setup — no proxy required. Works when agent supports hooks for both MCP and CLI tool calls. Agent must honor deny decisions.
MCP Gateway onlyMCP gateway proxyCLI skill or maybe-dont cliFor agents without hook support. CLI enforcement relies on LLM compliance.
Why combine MCP Gateway + Hooks? The MCP gateway intercepts tool call responses at the proxy layer — before they reach the agent. This provides stronger enforcement than hooks alone, where the agent receives the response and must honor the deny decision. For CLI commands, hooks call the gateway’s intercept endpoint directly and enforce decisions deterministically. Together, they give you full coverage across both MCP and CLI surfaces.

Integration Guides