action vercel_create_project_env { label: "Create one or more environment variables" description: "Create one ore more environment variables for a project by passing its `key`, `value`, `type` and `target` and by specifying the project by either passing the project `id` or `name` in the URL." provider: vercel method: POST path: "/v10/projects/{idOrName}/env" 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" } }