action vercel_delete_project { label: "Delete a Project" description: "Delete a specific project by passing either the project `id` or `name` in the URL." provider: vercel method: DELETE path: "/v9/projects/{idOrName}" encoding: json input: { type: "object" properties: { idOrName: { type: "string" description: "The unique project identifier or the project name" } teamId: { type: "string" } } required: ["idOrName"] additionalProperties: false } output: { type: "object" additionalProperties: true } }