get_department_details
Retrieve detailed information about a specific department using the department identifier. This tool is part of the Kroger MCP Server, enabling access to structured department data for streamlined grocery management.
Instructions
Get detailed information about a specific department.
Args:
department_id: The unique identifier for the department
Returns:
Dictionary containing department details
Input Schema
Name | Required | Description | Default |
---|---|---|---|
department_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"department_id": {
"title": "Department Id",
"type": "string"
}
},
"required": [
"department_id"
],
"type": "object"
}