# coordinate

Multi-agent coordination. Actions: - delegate: Delegate your vote to another agent (deliberation_id, from_agent, to_agent; optional: scope) - invite: Invite an agent to join (deliberation_id, invited_by, invited_agent, reason; optional: role) - generate_join_code: Generate a short-lived join code (deliberation_id; optional: role, ttl_minutes) - join: Join a deliberation using a code (code, agent_id)

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

## Facts

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

## Parameters

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `code` | string | no |  |
| `role` | string | no |  |
| `scope` | string | no |  |
| `action` | string | yes |  |
| `reason` | string | no |  |
| `agent_id` | string | no |  |
| `to_agent` | string | no |  |
| `from_agent` | string | no |  |
| `invited_by` | string | no |  |
| `ttl_minutes` | integer | no |  |
| `invited_agent` | 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": "coordinate",
    "arguments": {
      "action": "<action>"
    }
  }
}
```

## Why coordinate is rated Medium

All four actions modify deliberation state in a reversible way: delegating votes changes vote assignment (can be re-delegated), inviting agents adds participants, generating join codes creates short-lived tokens, and joining adds an agent to a deliberation. None of these are irreversible/destructive, execute arbitrary code, or involve finances.

From the tool's own definition: "delegate, invite, generate_join_code, join — all actions create or modify deliberation membership state and vote delegation relationships reversibly"

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

## Use case

AI agents use coordinate to create or update resources in Gemot Deliberation Server, usually the action step of a workflow, after the agent has gathered context. Every call changes real data in your Gemot Deliberation Server environment.

## Recommended policy (PolicyLayer)

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

```json
{
  "version": "1",
  "default": "deny",
  "tools": {
    "coordinate": {
      "limits": [
        {
          "counter": "coordinate_rate",
          "window": "minute",
          "max": 30,
          "scope": "grant"
        }
      ]
    }
  }
}
```

## 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
- `decide` — Read — https://policylayer.com/tools/dev-gemot-gemot/decide.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
