get_app_details
Retrieve detailed application metadata, including tables, fields, master items, sheets, and objects using GUID or case-insensitive name search with filters, via Qlik Sense MCP Server.
Instructions
Get compact application info with filters by guid or name (case-insensitive). Returns metainfo, tables/fields list, master items, sheets and objects with used fields.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
app_id | No | Application GUID (preferred if known) | |
name | No | Case-insensitive fuzzy search by app name |
Input Schema (JSON Schema)
{
"oneOf": [
{
"required": [
"app_id"
]
},
{
"required": [
"name"
]
}
],
"properties": {
"app_id": {
"description": "Application GUID (preferred if known)",
"type": "string"
},
"name": {
"description": "Case-insensitive fuzzy search by app name",
"type": "string"
}
},
"type": "object"
}