arcade-mcp/toolkits/vercel_api/arcade_vercel_api/wrapper_tools/GetUserTeams.json
jottakka 686dfce7b0
[MOAR][VERCEL] Adding Vercel Starter Toolkit (#638)
Vercel API

---------

Co-authored-by: Francisco Liberal <francisco@arcade.dev>
2025-10-21 12:06:46 -03:00

172 lines
5.2 KiB
JSON

{
"name": "GetUserTeams",
"fully_qualified_name": "VercelApi.GetUserTeams@0.1.0",
"description": "Retrieve all teams for the authenticated user.\n\nCall this tool to get a list of all teams the authenticated user is a member of, with pagination support.",
"toolkit": {
"name": "ArcadeVercelApi",
"description": null,
"version": "0.1.0"
},
"input": {
"parameters": [
{
"name": "max_number_of_teams",
"required": false,
"description": "Maximum number of teams to return in the response.",
"value_schema": {
"val_type": "number",
"inner_val_type": null,
"enum": null,
"properties": null,
"inner_properties": null,
"description": "Maximum number of Teams which may be returned."
},
"inferrable": true,
"http_endpoint_parameter_name": "limit"
},
{
"name": "teams_created_since_timestamp",
"required": false,
"description": "Timestamp in milliseconds to include only teams created since this time.",
"value_schema": {
"val_type": "number",
"inner_val_type": null,
"enum": null,
"properties": null,
"inner_properties": null,
"description": "Timestamp (in milliseconds) to only include Teams created since then."
},
"inferrable": true,
"http_endpoint_parameter_name": "since"
},
{
"name": "teams_created_until",
"required": false,
"description": "Timestamp in milliseconds to filter Teams created until the specified time.",
"value_schema": {
"val_type": "number",
"inner_val_type": null,
"enum": null,
"properties": null,
"inner_properties": null,
"description": "Timestamp (in milliseconds) to only include Teams created until then."
},
"inferrable": true,
"http_endpoint_parameter_name": "until"
}
]
},
"output": {
"description": "Response from the API endpoint 'getTeams'.",
"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/v2/teams",
"http_method": "GET",
"headers": {
"Content-Type": "application/json"
},
"parameters": [
{
"name": "limit",
"tool_parameter_name": "max_number_of_teams",
"description": "Maximum number of Teams which may be returned.",
"value_schema": {
"val_type": "number",
"inner_val_type": null,
"enum": null,
"properties": null,
"inner_properties": null,
"description": "Maximum number of Teams which may be returned."
},
"accepted_as": "query",
"required": false,
"deprecated": false,
"default": null,
"documentation_urls": []
},
{
"name": "since",
"tool_parameter_name": "teams_created_since_timestamp",
"description": "Timestamp (in milliseconds) to only include Teams created since then.",
"value_schema": {
"val_type": "number",
"inner_val_type": null,
"enum": null,
"properties": null,
"inner_properties": null,
"description": "Timestamp (in milliseconds) to only include Teams created since then."
},
"accepted_as": "query",
"required": false,
"deprecated": false,
"default": null,
"documentation_urls": []
},
{
"name": "until",
"tool_parameter_name": "teams_created_until",
"description": "Timestamp (in milliseconds) to only include Teams created until then.",
"value_schema": {
"val_type": "number",
"inner_val_type": null,
"enum": null,
"properties": null,
"inner_properties": null,
"description": "Timestamp (in milliseconds) to only include Teams created until then."
},
"accepted_as": "query",
"required": false,
"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": null,
"use_request_body_schema_mode": false,
"validate_request_body_schema": false
}
}