Connect your agent (MCP)

AIOS Govern exposes a streamable-HTTP MCP server so your agent can submit governance requests and act on decisions through native tool calls.

Endpoint

https://govern.cutlineadvisory.app/api/mcp

Authenticate with a Bearer MCP key (kind mcp or agent) from /agents. The same key scopes every tool to your account.

Client config

Paste this into your MCP client config (Claude Desktop, Cursor, and similar):

{
  "mcpServers": {
    "aigos": {
      "url": "https://govern.cutlineadvisory.app/api/mcp",
      "headers": {
        "Authorization": "Bearer <YOUR_MCP_KEY>"
      }
    }
  }
}

Tool discovery

Agents discover the full toolset at connect time via the standard tools/list JSON-RPC method — no hard-coding required. The server also implements initialize and ping.

Available tools

Separation of duties

An agent cannot self-approve. If a request was created with route: "approval" by this same agent, calling approve or reject is refused — a different human must decide. Use route: "approval_self" when the submitting key's bound user is allowed to approve their own request.