{ "name": "AddProjectMember", "fully_qualified_name": "VercelApi.AddProjectMember@0.1.0", "description": "Add a new member to a Vercel project.\n\nUse this tool to add a new member to a Vercel project using the project's ID or name.", "toolkit": { "name": "ArcadeVercelApi", "description": null, "version": "0.1.0" }, "input": { "parameters": [ { "name": "project_id_or_name", "required": true, "description": "The ID or name of the Vercel project to which a new member will be added.", "value_schema": { "val_type": "string", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "The ID or name of the Project." }, "inferrable": true, "http_endpoint_parameter_name": "idOrName" }, { "name": "member_details", "required": true, "description": "Provide the member's UID, username, email, and role for the project. Role options: ADMIN, PROJECT_DEVELOPER, PROJECT_VIEWER.", "value_schema": { "val_type": "json", "inner_val_type": null, "enum": null, "properties": { "uid": { "val_type": "string", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "The ID of the team member that should be added to this project." }, "username": { "val_type": "string", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "The username of the team member that should be added to this project." }, "email": { "val_type": "string", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "The email of the team member that should be added to this project." }, "role": { "val_type": "string", "inner_val_type": null, "enum": [ "ADMIN", "PROJECT_DEVELOPER", "PROJECT_VIEWER" ], "properties": null, "inner_properties": null, "description": "The project role of the member that will be added." } }, "inner_properties": null, "description": "" }, "inferrable": true, "http_endpoint_parameter_name": "requestBody" }, { "name": "team_identifier", "required": false, "description": "The unique identifier of the Team to perform the request on behalf of.", "value_schema": { "val_type": "string", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "The Team identifier to perform the request on behalf of." }, "inferrable": true, "http_endpoint_parameter_name": "teamId" }, { "name": "team_slug", "required": false, "description": "The slug identifying the team for performing the request.", "value_schema": { "val_type": "string", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "The Team slug to perform the request on behalf of." }, "inferrable": true, "http_endpoint_parameter_name": "slug" } ] }, "output": { "description": "Response from the API endpoint 'addProjectMember'.", "available_modes": [ "value", "error", "null" ], "value_schema": { "val_type": "json", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": null } }, "requirements": { "authorization": null, "secrets": [ { "key": "VERCEL_ACCESS_TOKEN" } ], "metadata": null }, "deprecation_message": null, "metadata": { "object_type": "api_wrapper_tool", "version": "1.1.0", "description": "Tools that enable LLMs to interact directly with the vercel API." }, "http_endpoint": { "metadata": { "object_type": "http_endpoint", "version": "1.2.0", "description": "" }, "url": "https://api.vercel.com/v1/projects/{idOrName}/members", "http_method": "POST", "headers": { "Content-Type": "application/json" }, "parameters": [ { "name": "teamId", "tool_parameter_name": "team_identifier", "description": "The Team identifier to perform the request on behalf of.", "value_schema": { "val_type": "string", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "The Team identifier to perform the request on behalf of." }, "accepted_as": "query", "required": false, "deprecated": false, "default": null, "documentation_urls": [] }, { "name": "slug", "tool_parameter_name": "team_slug", "description": "The Team slug to perform the request on behalf of.", "value_schema": { "val_type": "string", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "The Team slug to perform the request on behalf of." }, "accepted_as": "query", "required": false, "deprecated": false, "default": null, "documentation_urls": [] }, { "name": "idOrName", "tool_parameter_name": "project_id_or_name", "description": "The ID or name of the Project.", "value_schema": { "val_type": "string", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "The ID or name of the Project." }, "accepted_as": "path", "required": true, "deprecated": false, "default": null, "documentation_urls": [] }, { "name": "requestBody", "tool_parameter_name": "member_details", "description": "", "value_schema": { "val_type": "json", "inner_val_type": null, "enum": null, "properties": { "uid": { "val_type": "string", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "The ID of the team member that should be added to this project." }, "username": { "val_type": "string", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "The username of the team member that should be added to this project." }, "email": { "val_type": "string", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "The email of the team member that should be added to this project." }, "role": { "val_type": "string", "inner_val_type": null, "enum": [ "ADMIN", "PROJECT_DEVELOPER", "PROJECT_VIEWER" ], "properties": null, "inner_properties": null, "description": "The project role of the member that will be added." } }, "inner_properties": null, "description": "" }, "accepted_as": "body", "required": true, "deprecated": false, "default": null, "documentation_urls": [] } ], "documentation_urls": [], "secrets": [ { "arcade_key": "VERCEL_ACCESS_TOKEN", "parameter_name": "Authorization", "accepted_as": "header", "formatted_value": "Bearer {authorization}", "description": "", "is_auth_token": false } ], "request_body_spec": "{\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"type\": \"object\",\n \"additionalProperties\": false,\n \"required\": [\n \"role\"\n ],\n \"oneOf\": [\n {\n \"required\": [\n \"uid\"\n ]\n },\n {\n \"required\": [\n \"username\"\n ]\n },\n {\n \"required\": [\n \"email\"\n ]\n }\n ],\n \"properties\": {\n \"uid\": {\n \"type\": \"string\",\n \"maxLength\": 256,\n \"example\": \"ndlgr43fadlPyCtREAqxxdyFK\",\n \"description\": \"The ID of the team member that should be added to this project.\"\n },\n \"username\": {\n \"type\": \"string\",\n \"maxLength\": 256,\n \"example\": \"example\",\n \"description\": \"The username of the team member that should be added to this project.\"\n },\n \"email\": {\n \"type\": \"string\",\n \"format\": \"email\",\n \"example\": \"entity@example.com\",\n \"description\": \"The email of the team member that should be added to this project.\"\n },\n \"role\": {\n \"type\": \"string\",\n \"enum\": [\n \"ADMIN\",\n \"PROJECT_DEVELOPER\",\n \"PROJECT_VIEWER\"\n ],\n \"example\": \"ADMIN\",\n \"description\": \"The project role of the member that will be added.\"\n }\n }\n }\n }\n },\n \"required\": true\n}", "use_request_body_schema_mode": true, "validate_request_body_schema": true } }