@@ -49,67 +49,67 @@ server.setRequestHandler(ListToolsRequestSchema, async () => {
49
49
return {
50
50
tools : [
51
51
{
52
- name : 'list_projects ' ,
52
+ name : 'lightdash_list_projects ' ,
53
53
description : 'List all projects in the Lightdash organization' ,
54
54
inputSchema : zodToJsonSchema ( ListProjectsSchema ) ,
55
55
} ,
56
56
{
57
- name : 'get_project ' ,
57
+ name : 'lightdash_get_project ' ,
58
58
description : 'Get details of a specific project' ,
59
59
inputSchema : zodToJsonSchema ( GetProjectSchema ) ,
60
60
} ,
61
61
{
62
- name : 'list_spaces ' ,
62
+ name : 'lightdash_list_spaces ' ,
63
63
description : 'List all spaces in a project' ,
64
64
inputSchema : zodToJsonSchema ( ListSpacesSchema ) ,
65
65
} ,
66
66
{
67
- name : 'list_charts ' ,
67
+ name : 'lightdash_list_charts ' ,
68
68
description : 'List all charts in a project' ,
69
69
inputSchema : zodToJsonSchema ( ListChartsSchema ) ,
70
70
} ,
71
71
{
72
- name : 'list_dashboards ' ,
72
+ name : 'lightdash_list_dashboards ' ,
73
73
description : 'List all dashboards in a project' ,
74
74
inputSchema : zodToJsonSchema ( ListDashboardsSchema ) ,
75
75
} ,
76
76
{
77
- name : 'get_custom_metrics ' ,
77
+ name : 'lightdash_get_custom_metrics ' ,
78
78
description : 'Get custom metrics for a project' ,
79
79
inputSchema : zodToJsonSchema ( GetCustomMetricsSchema ) ,
80
80
} ,
81
81
{
82
- name : 'get_catalog ' ,
82
+ name : 'lightdash_get_catalog ' ,
83
83
description : 'Get catalog for a project' ,
84
84
inputSchema : zodToJsonSchema ( GetCatalogSchema ) ,
85
85
} ,
86
86
{
87
- name : 'get_metrics_catalog ' ,
87
+ name : 'lightdash_get_metrics_catalog ' ,
88
88
description : 'Get metrics catalog for a project' ,
89
89
inputSchema : zodToJsonSchema ( GetMetricsCatalogSchema ) ,
90
90
} ,
91
91
{
92
- name : 'get_charts_as_code ' ,
92
+ name : 'lightdash_get_charts_as_code ' ,
93
93
description : 'Get charts as code for a project' ,
94
94
inputSchema : zodToJsonSchema ( GetChartsAsCodeSchema ) ,
95
95
} ,
96
96
{
97
- name : 'get_dashboards_as_code ' ,
97
+ name : 'lightdash_get_dashboards_as_code ' ,
98
98
description : 'Get dashboards as code for a project' ,
99
99
inputSchema : zodToJsonSchema ( GetDashboardsAsCodeSchema ) ,
100
100
} ,
101
101
{
102
- name : 'get_metadata ' ,
102
+ name : 'lightdash_get_metadata ' ,
103
103
description : 'Get metadata for a specific table in the data catalog' ,
104
104
inputSchema : zodToJsonSchema ( GetMetadataSchema ) ,
105
105
} ,
106
106
{
107
- name : 'get_analytics ' ,
107
+ name : 'lightdash_get_analytics ' ,
108
108
description : 'Get analytics for a specific table in the data catalog' ,
109
109
inputSchema : zodToJsonSchema ( GetAnalyticsSchema ) ,
110
110
} ,
111
111
{
112
- name : 'get_user_attributes ' ,
112
+ name : 'lightdash_get_user_attributes ' ,
113
113
description : 'Get organization user attributes' ,
114
114
inputSchema : zodToJsonSchema ( GetUserAttributesSchema ) ,
115
115
} ,
0 commit comments