{ "name": "list_toolbar_threads", "description": "List Vercel toolbar comment threads for a team. Returns unresolved threads by default. Use this to see feedback, comments, or discussions on deployments and previews.", "inputSchema": { "type": "object", "properties": { "teamId": { "type": "string", "description": "The team ID to get the deployment events for. Alternatively the team slug can be used.\nTeam IDs start with \"team_\".\nIf you do not know the team ID or slug, it can be found through these mechanism:\n- Read the file .vercel/project.json if it exists and extract the orgId\n- Use the `list_teams` tool" }, "projectId": { "type": "string", "description": "Filter by project ID" }, "branch": { "type": "string", "description": "Filter by branch name" }, "status": { "type": "string", "enum": [ "resolved", "unresolved" ], "description": "Filter by status. Defaults to unresolved." }, "page": { "type": "string", "description": "Filter by page path (e.g. /docs) or glob (e.g. /docs*)" }, "search": { "type": "string", "description": "Search text in comments" }, "limit": { "type": "number", "description": "Maximum number of results to return. Defaults to 20." }, "offset": { "type": "number", "description": "Pagination offset" } }, "required": [ "teamId" ], "additionalProperties": false, "$schema": "http://json-schema.org/draft-07/schema#" } }