get_report_columns
Retrieve column structure for specific Frappe reports with optional filtering to analyze data organization and field definitions.
Instructions
Get the column structure for a specific report.
Args:
report_name: Name of the report
filters: Filter string (optional). Uses custom syntax to bypass MCP validation issues.
Filter Syntax: Use the same string-based syntax as count_documents and list_documents.
Examples: "status:Open", "date:>=:2025-01-01", "status:in:Open|Working"
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filters | No | ||
report_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"filters": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Filters"
},
"report_name": {
"title": "Report Name",
"type": "string"
}
},
"required": [
"report_name"
],
"title": "get_report_columnsArguments",
"type": "object"
}