arcade-mcp/toolkits/trello_api/arcade_trello_api/wrapper_tools/GetEnterpriseMemberById.json
jottakka d74af74cef
[MOAR][TRELLO] Adding trello tools (#591)
No Oauth, uses Oauth1 and needs a Token and a Api key as secrets.

---------

Co-authored-by: Francisco Liberal <francisco@arcade.dev>
Co-authored-by: Renato Byrro <rmbyrro@gmail.com>
2025-10-06 13:09:49 -03:00

239 lines
7.8 KiB
JSON

{
"name": "GetEnterpriseMemberById",
"fully_qualified_name": "TrelloApi.GetEnterpriseMemberById@0.1.0",
"description": "Retrieve a specific enterprise member's details by ID.\n\nThis tool retrieves details of a specific member within an enterprise using their ID. It should be called when you need information about an enterprise member, provided the enterprise ID and member ID are known.",
"toolkit": {
"name": "ArcadeTrelloApi",
"description": null,
"version": "0.1.0"
},
"input": {
"parameters": [
{
"name": "enterprise_id",
"required": true,
"description": "The ID of the enterprise from which to retrieve the member information.",
"value_schema": {
"val_type": "string",
"inner_val_type": null,
"enum": null,
"properties": null,
"inner_properties": null,
"description": "ID of the enterprise to retrieve."
},
"inferrable": true,
"http_endpoint_parameter_name": "id"
},
{
"name": "member_id",
"required": true,
"description": "The unique ID of the enterprise member to retrieve details for.",
"value_schema": {
"val_type": "string",
"inner_val_type": null,
"enum": null,
"properties": null,
"inner_properties": null,
"description": "An ID of a member resource."
},
"inferrable": true,
"http_endpoint_parameter_name": "idMember"
},
{
"name": "member_fields",
"required": false,
"description": "A comma-separated list of fields to retrieve for the member. Accepts any valid values from the nested member field resource.",
"value_schema": {
"val_type": "string",
"inner_val_type": null,
"enum": null,
"properties": null,
"inner_properties": null,
"description": "A comma separated list of any valid values that the [nested member field resource]() accepts."
},
"inferrable": true,
"http_endpoint_parameter_name": "fields"
},
{
"name": "organization_fields",
"required": false,
"description": "Specify which organization fields to retrieve, using valid organization field resource identifiers.",
"value_schema": {
"val_type": "string",
"inner_val_type": null,
"enum": null,
"properties": null,
"inner_properties": null,
"description": "Any valid value that the [nested organization field resource](/cloud/trello/guides/rest-api/nested-resources/) accepts."
},
"inferrable": true,
"http_endpoint_parameter_name": "organization_fields"
},
{
"name": "board_fields_for_enterprise_member",
"required": false,
"description": "Comma-separated values specifying board fields for a member of an enterprise.",
"value_schema": {
"val_type": "string",
"inner_val_type": null,
"enum": null,
"properties": null,
"inner_properties": null,
"description": "Any valid value that the [nested board resource](/cloud/trello/guides/rest-api/nested-resources/) accepts."
},
"inferrable": true,
"http_endpoint_parameter_name": "board_fields"
}
]
},
"output": {
"description": "Response from the API endpoint 'get-enterprises-id-members-idmember'.",
"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": "TRELLO_API_KEY"
},
{
"key": "TRELLO_TOKEN"
}
],
"metadata": null
},
"deprecation_message": null,
"metadata": {
"object_type": "api_wrapper_tool",
"version": "1.0.0",
"description": "Tools that enable LLMs to interact directly with the trello API."
},
"http_endpoint": {
"metadata": {
"object_type": "http_endpoint",
"version": "1.0.0",
"description": ""
},
"url": "https://api.trello.com/1/enterprises/{id}/members/{idMember}",
"http_method": "GET",
"headers": {},
"parameters": [
{
"name": "fields",
"tool_parameter_name": "member_fields",
"description": "A comma separated list of any valid values that the [nested member field resource]() accepts.",
"value_schema": {
"val_type": "string",
"inner_val_type": null,
"enum": null,
"properties": null,
"inner_properties": null,
"description": "A comma separated list of any valid values that the [nested member field resource]() accepts."
},
"accepted_as": "query",
"required": false,
"deprecated": false,
"documentation_urls": []
},
{
"name": "organization_fields",
"tool_parameter_name": "organization_fields",
"description": "Any valid value that the [nested organization field resource](/cloud/trello/guides/rest-api/nested-resources/) accepts.",
"value_schema": {
"val_type": "string",
"inner_val_type": null,
"enum": null,
"properties": null,
"inner_properties": null,
"description": "Any valid value that the [nested organization field resource](/cloud/trello/guides/rest-api/nested-resources/) accepts."
},
"accepted_as": "query",
"required": false,
"deprecated": false,
"documentation_urls": []
},
{
"name": "board_fields",
"tool_parameter_name": "board_fields_for_enterprise_member",
"description": "Any valid value that the [nested board resource](/cloud/trello/guides/rest-api/nested-resources/) accepts.",
"value_schema": {
"val_type": "string",
"inner_val_type": null,
"enum": null,
"properties": null,
"inner_properties": null,
"description": "Any valid value that the [nested board resource](/cloud/trello/guides/rest-api/nested-resources/) accepts."
},
"accepted_as": "query",
"required": false,
"deprecated": false,
"documentation_urls": []
},
{
"name": "id",
"tool_parameter_name": "enterprise_id",
"description": "ID of the enterprise to retrieve.",
"value_schema": {
"val_type": "string",
"inner_val_type": null,
"enum": null,
"properties": null,
"inner_properties": null,
"description": "ID of the enterprise to retrieve."
},
"accepted_as": "path",
"required": true,
"deprecated": false,
"documentation_urls": []
},
{
"name": "idMember",
"tool_parameter_name": "member_id",
"description": "An ID of a member resource.",
"value_schema": {
"val_type": "string",
"inner_val_type": null,
"enum": null,
"properties": null,
"inner_properties": null,
"description": "An ID of a member resource."
},
"accepted_as": "path",
"required": true,
"deprecated": false,
"documentation_urls": []
}
],
"documentation_urls": [],
"secrets": [
{
"arcade_key": "TRELLO_API_KEY",
"parameter_name": "key",
"accepted_as": "query",
"formatted_value": null,
"description": "",
"is_auth_token": false
},
{
"arcade_key": "TRELLO_TOKEN",
"parameter_name": "token",
"accepted_as": "query",
"formatted_value": null,
"description": "",
"is_auth_token": false
}
]
}
}