action vercel_create_team { label: "Create a Team" description: "Create a new Team under your account. You need to send a POST request with the desired Team slug, and optionally the Team name." provider: vercel method: POST path: "/v1/teams" encoding: json input: { type: "object" required: ["slug"] properties: { name: { type: "string" description: "The desired name for the Team. It will be generated from the provided slug if nothing is provided" } slug: { type: "string" description: "The desired slug for the Team" } } additionalProperties: false } output: { type: "object" description: "The team was created successfuly" required: ["id"] properties: { id: { type: "string" description: "Id of the created team" } } } }