mirror of
https://github.com/apache/superset.git
synced 2026-04-19 16:14:52 +00:00
166 lines
5.1 KiB
Python
166 lines
5.1 KiB
Python
# Licensed to the Apache Software Foundation (ASF) under one
|
|
# or more contributor license agreements. See the NOTICE file
|
|
# distributed with this work for additional information
|
|
# regarding copyright ownership. The ASF licenses this file
|
|
# to you under the Apache License, Version 2.0 (the
|
|
# "License"); you may not use this file except in compliance
|
|
# with the License. You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing,
|
|
# software distributed under the License is distributed on an
|
|
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
# KIND, either express or implied. See the License for the
|
|
# specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
"""
|
|
MCP tool: list_charts (advanced filtering with metadata cache control)
|
|
"""
|
|
|
|
import logging
|
|
from typing import cast, TYPE_CHECKING
|
|
|
|
from fastmcp import Context
|
|
from superset_core.mcp.decorators import tool, ToolAnnotations
|
|
|
|
if TYPE_CHECKING:
|
|
from superset.models.slice import Slice
|
|
|
|
from superset.extensions import event_logger
|
|
from superset.mcp_service.chart.schemas import (
|
|
ChartFilter,
|
|
ChartInfo,
|
|
ChartLike,
|
|
ChartList,
|
|
ListChartsRequest,
|
|
serialize_chart_object,
|
|
)
|
|
from superset.mcp_service.mcp_core import ModelListCore
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
# Minimal defaults for reduced token usage - users can request more via select_columns
|
|
DEFAULT_CHART_COLUMNS = [
|
|
"id",
|
|
"slice_name",
|
|
"viz_type",
|
|
"url",
|
|
"changed_on",
|
|
"changed_on_humanized",
|
|
]
|
|
|
|
SORTABLE_CHART_COLUMNS = [
|
|
"id",
|
|
"slice_name",
|
|
"viz_type",
|
|
"datasource_name",
|
|
"description",
|
|
"changed_on",
|
|
"created_on",
|
|
]
|
|
|
|
|
|
@tool(
|
|
tags=["core"],
|
|
class_permission_name="Chart",
|
|
annotations=ToolAnnotations(
|
|
title="List charts",
|
|
readOnlyHint=True,
|
|
destructiveHint=False,
|
|
),
|
|
)
|
|
async def list_charts(request: ListChartsRequest, ctx: Context) -> ChartList:
|
|
"""List charts with filtering and search.
|
|
|
|
Returns chart metadata including id, name, viz_type, URL, and last
|
|
modified time.
|
|
|
|
Sortable columns for order_column: id, slice_name, viz_type,
|
|
datasource_name, description, changed_on, created_on
|
|
"""
|
|
await ctx.info(
|
|
"Listing charts: page=%s, page_size=%s, search=%s"
|
|
% (
|
|
request.page,
|
|
request.page_size,
|
|
request.search,
|
|
)
|
|
)
|
|
await ctx.debug(
|
|
"Chart listing filters: filters=%s, order_column=%s, order_direction=%s"
|
|
% (
|
|
len(request.filters),
|
|
request.order_column,
|
|
request.order_direction,
|
|
)
|
|
)
|
|
|
|
from superset.daos.chart import ChartDAO
|
|
from superset.mcp_service.common.schema_discovery import (
|
|
CHART_SORTABLE_COLUMNS,
|
|
get_all_column_names,
|
|
get_chart_columns,
|
|
)
|
|
|
|
# Get all column names dynamically from the model
|
|
all_columns = get_all_column_names(get_chart_columns())
|
|
|
|
def _serialize_chart(
|
|
obj: "Slice | None", cols: list[str] | None
|
|
) -> ChartInfo | None:
|
|
"""Serialize chart object (field filtering handled by model_serializer)."""
|
|
return serialize_chart_object(cast(ChartLike | None, obj))
|
|
|
|
tool = ModelListCore(
|
|
dao_class=ChartDAO,
|
|
output_schema=ChartInfo,
|
|
item_serializer=_serialize_chart,
|
|
filter_type=ChartFilter,
|
|
default_columns=DEFAULT_CHART_COLUMNS,
|
|
search_columns=[
|
|
"slice_name",
|
|
"description",
|
|
],
|
|
list_field_name="charts",
|
|
output_list_schema=ChartList,
|
|
all_columns=all_columns,
|
|
sortable_columns=CHART_SORTABLE_COLUMNS,
|
|
logger=logger,
|
|
)
|
|
|
|
try:
|
|
with event_logger.log_context(action="mcp.list_charts.query"):
|
|
result = tool.run_tool(
|
|
filters=request.filters,
|
|
search=request.search,
|
|
select_columns=request.select_columns,
|
|
order_column=request.order_column,
|
|
order_direction=request.order_direction,
|
|
page=max(request.page - 1, 0),
|
|
page_size=request.page_size,
|
|
)
|
|
count = len(result.charts) if hasattr(result, "charts") else 0
|
|
total_pages = getattr(result, "total_pages", None)
|
|
await ctx.info(
|
|
"Charts listed successfully: count=%s, total_pages=%s"
|
|
% (count, total_pages)
|
|
)
|
|
|
|
# Apply field filtering via serialization context
|
|
# Always use columns_requested (either explicit select_columns or defaults)
|
|
# This triggers ChartInfo._filter_fields_by_context for each chart
|
|
columns_to_filter = result.columns_requested
|
|
await ctx.debug(
|
|
"Applying field filtering via serialization context: columns=%s"
|
|
% (columns_to_filter,)
|
|
)
|
|
with event_logger.log_context(action="mcp.list_charts.serialization"):
|
|
return result.model_dump(
|
|
mode="json", context={"select_columns": columns_to_filter}
|
|
)
|
|
except Exception as e:
|
|
await ctx.error("Failed to list charts: %s" % (str(e),))
|
|
raise
|