From 1e902184889f3550c1cbbcc2c779ee9035e70012 Mon Sep 17 00:00:00 2001 From: guchey Date: Fri, 21 Mar 2025 17:14:59 +0900 Subject: [PATCH] =?UTF-8?q?API=E3=81=AE=E3=83=84=E3=83=BC=E3=83=AB?= =?UTF-8?q?=E5=90=8D=E3=82=92=E3=83=97=E3=83=AC=E3=83=95=E3=82=A3=E3=83=83?= =?UTF-8?q?=E3=82=AF=E3=82=B9=E4=BB=98=E3=81=8D=E3=81=AB=E5=A4=89=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/index.ts | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/src/index.ts b/src/index.ts index 8eece01..196036e 100644 --- a/src/index.ts +++ b/src/index.ts @@ -49,67 +49,67 @@ server.setRequestHandler(ListToolsRequestSchema, async () => { return { tools: [ { - name: 'list_projects', + name: 'lightdash_list_projects', description: 'List all projects in the Lightdash organization', inputSchema: zodToJsonSchema(ListProjectsSchema), }, { - name: 'get_project', + name: 'lightdash_get_project', description: 'Get details of a specific project', inputSchema: zodToJsonSchema(GetProjectSchema), }, { - name: 'list_spaces', + name: 'lightdash_list_spaces', description: 'List all spaces in a project', inputSchema: zodToJsonSchema(ListSpacesSchema), }, { - name: 'list_charts', + name: 'lightdash_list_charts', description: 'List all charts in a project', inputSchema: zodToJsonSchema(ListChartsSchema), }, { - name: 'list_dashboards', + name: 'lightdash_list_dashboards', description: 'List all dashboards in a project', inputSchema: zodToJsonSchema(ListDashboardsSchema), }, { - name: 'get_custom_metrics', + name: 'lightdash_get_custom_metrics', description: 'Get custom metrics for a project', inputSchema: zodToJsonSchema(GetCustomMetricsSchema), }, { - name: 'get_catalog', + name: 'lightdash_get_catalog', description: 'Get catalog for a project', inputSchema: zodToJsonSchema(GetCatalogSchema), }, { - name: 'get_metrics_catalog', + name: 'lightdash_get_metrics_catalog', description: 'Get metrics catalog for a project', inputSchema: zodToJsonSchema(GetMetricsCatalogSchema), }, { - name: 'get_charts_as_code', + name: 'lightdash_get_charts_as_code', description: 'Get charts as code for a project', inputSchema: zodToJsonSchema(GetChartsAsCodeSchema), }, { - name: 'get_dashboards_as_code', + name: 'lightdash_get_dashboards_as_code', description: 'Get dashboards as code for a project', inputSchema: zodToJsonSchema(GetDashboardsAsCodeSchema), }, { - name: 'get_metadata', + name: 'lightdash_get_metadata', description: 'Get metadata for a specific table in the data catalog', inputSchema: zodToJsonSchema(GetMetadataSchema), }, { - name: 'get_analytics', + name: 'lightdash_get_analytics', description: 'Get analytics for a specific table in the data catalog', inputSchema: zodToJsonSchema(GetAnalyticsSchema), }, { - name: 'get_user_attributes', + name: 'lightdash_get_user_attributes', description: 'Get organization user attributes', inputSchema: zodToJsonSchema(GetUserAttributesSchema), },