All tools

agent_mesh_join

Agent mesh · macOS · Windows

Effect: write (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

Enrolls THIS machine into an existing agent mesh using a pairing code the user got from another of their machines (via agent_mesh_invite). After joining, this machine can see the other agents and exchange messages with them. To create a mesh instead of joining one, use agent_mesh_create.

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": {
    "code": {
      "description": "The pairing code from agent_mesh_invite on another machine",
      "type": "string"
    },
    "label": {
      "description": "Human name for THIS machine in the directory (e.g. 'Windows dev')",
      "type": "string"
    }
  },
  "required": [
    "code"
  ],
  "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.

{
  "code": "ABCD-EFGH"
}

Windows

Purpose

Enrolls THIS machine into an existing agent mesh using a pairing code the user got from another of their machines (via agent_mesh_invite). After joining, this machine can see the other agents and exchange messages with them. To create a mesh instead of joining one, use agent_mesh_create.

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": {
    "code": {
      "description": "The pairing code from agent_mesh_invite on another machine",
      "type": "string"
    },
    "label": {
      "description": "Human name for THIS machine in the directory (e.g. 'Windows dev')",
      "type": "string"
    }
  },
  "required": [
    "code"
  ],
  "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.

{
  "code": "ABCD-EFGH"
}