annator / mcps /vercel /tools /get_toolbar_thread.json
techprotrade's picture
Add mcps directory (part 2)
cf3884b verified
Raw
History Blame Contribute Delete
836 Bytes
{
"name": "get_toolbar_thread",
"description": "Get a specific toolbar thread by ID, including all messages and context.",
"inputSchema": {
"type": "object",
"properties": {
"threadId": {
"type": "string",
"description": "The thread ID to retrieve"
},
"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"
}
},
"required": [
"threadId",
"teamId"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}
}