Skip to main content
Get details of a specific project member

Tool details

FieldValue
Nameget_member
GroupMembers

Playground

Input schema

Input schema
{
  "type": "object",
  "properties": {
    "project_reference": {
      "type": "string",
      "description": "Project ID or slug"
    },
    "user_id": {
      "type": "string",
      "description": "User ID"
    }
  },
  "required": [
    "project_reference",
    "user_id"
  ],
  "additionalProperties": false,
  "description": "Input schema for the get_member tool.",
  "$schema": "http://json-schema.org/draft-07/schema#"
}

Output schema

Output schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the returned record."
    },
    "email": {
      "type": "string",
      "description": "The email associated with this tool result."
    },
    "name": {
      "type": [
        "string",
        "null"
      ],
      "description": "Human-readable name for the returned record."
    },
    "project_role": {
      "type": "string",
      "description": "The project role associated with this tool result."
    },
    "avatar_src": {
      "type": [
        "string",
        "null"
      ],
      "description": "The avatar src associated with this tool result."
    }
  },
  "required": [
    "id",
    "email",
    "name",
    "project_role",
    "avatar_src"
  ],
  "additionalProperties": false,
  "description": "Structured result returned by the get_member tool.",
  "$schema": "http://json-schema.org/draft-07/schema#"
}