# decide

Commitments and reputation tracking. Actions: - commit: Commit to a deliberation outcome (deliberation_id, agent_id, statement; optional: conditional) - get_commitments: Get all commitments (deliberation_id) - fulfill: Mark a commitment as fulfilled (commitment_id; optional: verified_by) — caller must be a participant in the commitment's deliberation, and cannot be the agent that made it - break: Mark a commitment as broken (commitment_id, reason; optional: verified_by) — caller must be a participant in the commitment's deliberation; the committing agent may break its own - reputation: Get an agent's commitment track record (agent_id; optional: group_id)

Agent View of the PolicyLayer registry record for `decide`. HTML page: https://policylayer.com/tools/dev-gemot-gemot/decide

## Facts

- Tool: `decide`
- Server: Gemot Deliberation Server (`https://gemot.dev/mcp`) — https://policylayer.com/tools/dev-gemot-gemot.md
- Homepage: https://github.com/justinstimatze/gemot
- Risk category: Read (Low risk)
- Registry record: grade F, identity unverified
- Server auth posture: open
- Server rate-limited: no
- Parameters: 12 (1 required)
- Recommended policy verdict: Allowed

## Parameters

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `kind` | string | no |  |
| `note` | string | no |  |
| `action` | string | yes |  |
| `reason` | string | no |  |
| `agent_id` | string | no |  |
| `group_id` | string | no |  |
| `statement` | string | no |  |
| `accessor_id` | string | no |  |
| `conditional` | string | no |  |
| `verified_by` | string | no |  |
| `commitment_id` | string | no |  |
| `deliberation_id` | string | no |  |

Parameters from the server's own tool schema.

## Example call (MCP tools/call, JSON-RPC 2.0)

```json
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "decide",
    "arguments": {
      "action": "<action>"
    }
  }
}
```

## Why decide is rated Low

Even though decide only reads data, uncontrolled read access leaks sensitive information and racks up API costs: an agent caught in a retry loop can make thousands of calls a minute without anyone noticing.

Risk signals: Accepts freeform code/query input (statement) · High parameter count (13 properties)

## Use case

AI agents call decide to retrieve information from Gemot Deliberation Server without modifying anything. It is typically the context-gathering step in research, monitoring, and reporting workflows, before the agent takes action elsewhere.

## Recommended policy (PolicyLayer)

Verdict: **Allowed**. Enforced by the PolicyLayer MCP gateway (https://policylayer.com/mcp-gateway) before a call reaches Gemot Deliberation Server:

```json
{
  "version": "1",
  "default": "deny",
  "tools": {
    "decide": {}
  }
}
```

## Other tools on Gemot Deliberation Server (6)

- `deliberation` — Destructive — https://policylayer.com/tools/dev-gemot-gemot/deliberation.md
- `analyze` — Execute — https://policylayer.com/tools/dev-gemot-gemot/analyze.md
- `account` — Financial — https://policylayer.com/tools/dev-gemot-gemot/account.md
- `admin` — Read — https://policylayer.com/tools/dev-gemot-gemot/admin.md
- `coordinate` — Write — https://policylayer.com/tools/dev-gemot-gemot/coordinate.md
- `participate` — Write — https://policylayer.com/tools/dev-gemot-gemot/participate.md

## For agents

This record is a snapshot. Live verdicts and the full registry:

- Check every server in your MCP config at once: `npx -y policylayer stack`
- Vet a server before you add it: install the mcp-precheck skill — `npx skills add https://policylayer.com` (skill text: https://policylayer.com/skill.md)
- Query the registry over MCP: endpoint `https://api.policylayer.com/mcp` — tools `check_mcp_server`, `check_mcp_stack`, `check_tool`, `search_registry`, `get_change_events`

---

Source: the PolicyLayer MCP registry — one continuously verified record per MCP server. Full record: https://policylayer.com/registry?q=dev-gemot-gemot · API: https://policylayer.com/registry/api · Policy library: https://policylayer.com/policies/dev-gemot-gemot
