arcade-mcp/toolkits/weaviate_api/arcade_weaviate_api/wrapper_tools/GetShardHostNodesStatus.json
jottakka 6bba3284a4
[MOAR][Weaviate] Weaviate Starter Toolkits (#639)
Co-authored-by: Francisco Liberal <francisco@arcade.dev>
2025-10-21 15:50:26 -03:00

181 lines
5.6 KiB
JSON

{
"name": "GetShardHostNodesStatus",
"fully_qualified_name": "WeaviateApi.GetShardHostNodesStatus@0.1.0",
"description": "Retrieve status of nodes hosting shards for a collection.\n\nThis tool fetches status information for nodes that host shards of a specified collection. Use it to monitor or diagnose the nodes in a distributed database cluster, customizing the level of detail with the `output` query parameter.",
"toolkit": {
"name": "ArcadeWeaviateApi",
"description": null,
"version": "0.1.0"
},
"input": {
"parameters": [
{
"name": "collection_class_name",
"required": true,
"description": "The name of the collection (class) for which to retrieve node status.",
"value_schema": {
"val_type": "string",
"inner_val_type": null,
"enum": null,
"properties": null,
"inner_properties": null,
"description": "The name of the collection (class) for which to retrieve node status."
},
"inferrable": true,
"http_endpoint_parameter_name": "className"
},
{
"name": "shard_name",
"required": false,
"description": "Specifies the name of the shard for which to retrieve node status information. This helps to focus the request on specific shards within a collection.",
"value_schema": {
"val_type": "string",
"inner_val_type": null,
"enum": null,
"properties": null,
"inner_properties": null,
"description": ""
},
"inferrable": true,
"http_endpoint_parameter_name": "shardName"
},
{
"name": "output_verbosity",
"required": false,
"description": "Set the verbosity of the output. Possible values: 'minimal', 'verbose'. Defaults to 'minimal'.",
"value_schema": {
"val_type": "string",
"inner_val_type": null,
"enum": null,
"properties": null,
"inner_properties": null,
"description": "Controls the verbosity of the output, possible values are: `minimal`, `verbose`. Defaults to `minimal`."
},
"inferrable": true,
"http_endpoint_parameter_name": "output"
}
]
},
"output": {
"description": "Response from the API endpoint 'nodes.get.class'.",
"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": "WEAVIATE_API_KEY"
},
{
"key": "WEAVIATE_SERVER_URL"
}
],
"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 weaviate API."
},
"http_endpoint": {
"metadata": {
"object_type": "http_endpoint",
"version": "1.2.0",
"description": ""
},
"url": "{weaviate_server_url}/v1/nodes/{className}",
"http_method": "GET",
"headers": {},
"parameters": [
{
"name": "shardName",
"tool_parameter_name": "shard_name",
"description": "",
"value_schema": {
"val_type": "string",
"inner_val_type": null,
"enum": null,
"properties": null,
"inner_properties": null,
"description": ""
},
"accepted_as": "query",
"required": false,
"deprecated": false,
"default": null,
"documentation_urls": []
},
{
"name": "output",
"tool_parameter_name": "output_verbosity",
"description": "Controls the verbosity of the output, possible values are: `minimal`, `verbose`. Defaults to `minimal`.",
"value_schema": {
"val_type": "string",
"inner_val_type": null,
"enum": null,
"properties": null,
"inner_properties": null,
"description": "Controls the verbosity of the output, possible values are: `minimal`, `verbose`. Defaults to `minimal`."
},
"accepted_as": "query",
"required": false,
"deprecated": false,
"default": "minimal",
"documentation_urls": []
},
{
"name": "className",
"tool_parameter_name": "collection_class_name",
"description": "The name of the collection (class) for which to retrieve node status.",
"value_schema": {
"val_type": "string",
"inner_val_type": null,
"enum": null,
"properties": null,
"inner_properties": null,
"description": "The name of the collection (class) for which to retrieve node status."
},
"accepted_as": "path",
"required": true,
"deprecated": false,
"default": null,
"documentation_urls": []
}
],
"documentation_urls": [],
"secrets": [
{
"arcade_key": "WEAVIATE_API_KEY",
"parameter_name": "Authorization",
"accepted_as": "header",
"formatted_value": "Bearer {authorization}",
"description": "",
"is_auth_token": false
},
{
"arcade_key": "WEAVIATE_SERVER_URL",
"parameter_name": "weaviate_server_url",
"accepted_as": "path",
"formatted_value": null,
"description": "",
"is_auth_token": false
}
],
"request_body_spec": null,
"use_request_body_schema_mode": false,
"validate_request_body_schema": false
}
}