action vercel_get_team { label: "Get a Team" description: "Get information for the Team specified by the `teamId` parameter." provider: vercel method: GET path: "/v2/teams/{teamId}" encoding: json input: { type: "object" properties: { slug: { type: "string" } teamId: { type: "string" } } required: ["teamId"] additionalProperties: false } output: { type: "object" description: "Data representing a Team." } }