All tools

agent_mesh_revoke

Agent mesh · macOS · Windows

Effect: delete (strongest supported action). Status: gated.

Gated means the tool requires an installed app, a connected account, permission, or runtime availability. Check those requirements on the listed platform before using it.

macOS

Purpose

Removes another machine from this mesh, immediately: it stops appearing in the directory, stops receiving messages, and any pairing code it had minted dies with it. Use it when a pairing code may have leaked, or when a machine should no longer see the user's other agents. Ask the user before revoking — it is not reversible from the other side; that machine has to be invited again.

Required inputs

Permissions and confirmation

No explicit confirmation parameter is exposed in this snapshot. This does not grant permission to act: obtain user authorization before any real action.

Full input schema — macOS
{
  "properties": {
    "handle": {
      "description": "Handle of the machine to remove, from agents_list",
      "type": "string"
    }
  },
  "required": [
    "handle"
  ],
  "type": "object"
}

Documentation example

Do not execute this example. These concrete inputs refer to a fictional demonstration dataset. Resolve real handles and obtain user authorization before any real call.

{
  "handle": "demo-workstation"
}

Windows

Purpose

Removes another machine from this mesh, immediately: it stops appearing in the directory, stops receiving messages, and any pairing code it had minted dies with it. Use it when a pairing code may have leaked, or when a machine should no longer see the user's other agents. Ask the user before revoking — it is not reversible from the other side; that machine has to be invited again.

Required inputs

Permissions and confirmation

No explicit confirmation parameter is exposed in this snapshot. This does not grant permission to act: obtain user authorization before any real action.

Full input schema — Windows
{
  "properties": {
    "handle": {
      "description": "Handle of the machine to remove, from agents_list",
      "type": "string"
    }
  },
  "required": [
    "handle"
  ],
  "type": "object"
}

Documentation example

Do not execute this example. These concrete inputs refer to a fictional demonstration dataset. Resolve real handles and obtain user authorization before any real call.

{
  "handle": "demo-workstation"
}