@idealyst/mcp-server 1.2.102 → 1.2.104
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{chunk-SRNAGZJL.js → chunk-ZDB2NURA.js} +8167 -3237
- package/dist/chunk-ZDB2NURA.js.map +1 -0
- package/dist/index.cjs +7597 -2556
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +176 -41
- package/dist/index.js.map +1 -1
- package/dist/tools/index.cjs +8190 -3236
- package/dist/tools/index.cjs.map +1 -1
- package/dist/tools/index.d.cts +99 -7
- package/dist/tools/index.d.ts +99 -7
- package/dist/tools/index.js +49 -1
- package/package.json +7 -6
- package/dist/chunk-SRNAGZJL.js.map +0 -1
package/dist/tools/index.d.cts
CHANGED
|
@@ -77,11 +77,44 @@ interface GetNavigationTypesArgs {
|
|
|
77
77
|
format?: "typescript" | "json" | "both";
|
|
78
78
|
}
|
|
79
79
|
interface GetTranslateGuideArgs {
|
|
80
|
-
topic: "overview" | "runtime-api" | "babel-plugin" | "translation-files" | "examples";
|
|
80
|
+
topic: "overview" | "api" | "runtime-api" | "babel-plugin" | "translation-files" | "examples";
|
|
81
81
|
}
|
|
82
82
|
interface GetStorageGuideArgs {
|
|
83
83
|
topic: "overview" | "api" | "examples";
|
|
84
84
|
}
|
|
85
|
+
interface GetAudioGuideArgs {
|
|
86
|
+
topic: "overview" | "api" | "examples";
|
|
87
|
+
}
|
|
88
|
+
interface GetCameraGuideArgs {
|
|
89
|
+
topic: "overview" | "api" | "examples";
|
|
90
|
+
}
|
|
91
|
+
interface GetFilesGuideArgs {
|
|
92
|
+
topic: "overview" | "api" | "examples";
|
|
93
|
+
}
|
|
94
|
+
interface GetOauthClientGuideArgs {
|
|
95
|
+
topic: "overview" | "api" | "examples";
|
|
96
|
+
}
|
|
97
|
+
interface GetAnimateGuideArgs {
|
|
98
|
+
topic: "overview" | "api" | "examples";
|
|
99
|
+
}
|
|
100
|
+
interface GetDatagridGuideArgs {
|
|
101
|
+
topic: "overview" | "api" | "examples";
|
|
102
|
+
}
|
|
103
|
+
interface GetDatepickerGuideArgs {
|
|
104
|
+
topic: "overview" | "api" | "examples";
|
|
105
|
+
}
|
|
106
|
+
interface GetLottieGuideArgs {
|
|
107
|
+
topic: "overview" | "api" | "examples";
|
|
108
|
+
}
|
|
109
|
+
interface GetMarkdownGuideArgs {
|
|
110
|
+
topic: "overview" | "api" | "examples";
|
|
111
|
+
}
|
|
112
|
+
interface GetConfigGuideArgs {
|
|
113
|
+
topic: "overview" | "api" | "examples";
|
|
114
|
+
}
|
|
115
|
+
interface GetChartsGuideArgs {
|
|
116
|
+
topic: "overview" | "api" | "examples";
|
|
117
|
+
}
|
|
85
118
|
interface ListPackagesArgs {
|
|
86
119
|
category?: "core" | "ui" | "media" | "data" | "auth" | "utility" | "tooling";
|
|
87
120
|
}
|
|
@@ -105,8 +138,10 @@ interface SearchRecipesArgs {
|
|
|
105
138
|
interface GetInstallGuideArgs {
|
|
106
139
|
package: string;
|
|
107
140
|
}
|
|
108
|
-
|
|
109
|
-
|
|
141
|
+
interface GetIntroArgs {
|
|
142
|
+
}
|
|
143
|
+
type ToolName = "list_components" | "get_component_docs" | "get_component_example" | "search_components" | "get_component_types" | "get_component_examples_ts" | "get_cli_usage" | "search_icons" | "get_theme_types" | "get_navigation_types" | "get_translate_guide" | "get_storage_guide" | "get_audio_guide" | "get_camera_guide" | "get_files_guide" | "get_oauth_client_guide" | "get_animate_guide" | "get_datagrid_guide" | "get_datepicker_guide" | "get_lottie_guide" | "get_markdown_guide" | "get_config_guide" | "get_charts_guide" | "list_packages" | "get_package_docs" | "search_packages" | "list_recipes" | "get_recipe" | "search_recipes" | "get_install_guide" | "get_intro";
|
|
144
|
+
type ToolArgs = ListComponentsArgs | GetComponentDocsArgs | GetComponentExampleArgs | SearchComponentsArgs | GetComponentTypesArgs | GetComponentExamplesTsArgs | GetCliUsageArgs | SearchIconsArgs | GetThemeTypesArgs | GetNavigationTypesArgs | GetTranslateGuideArgs | GetStorageGuideArgs | GetAudioGuideArgs | GetCameraGuideArgs | GetFilesGuideArgs | GetOauthClientGuideArgs | GetAnimateGuideArgs | GetDatagridGuideArgs | GetDatepickerGuideArgs | GetLottieGuideArgs | GetMarkdownGuideArgs | GetConfigGuideArgs | GetChartsGuideArgs | ListPackagesArgs | GetPackageDocsArgs | SearchPackagesArgs | ListRecipesArgs | GetRecipeArgs | SearchRecipesArgs | GetInstallGuideArgs | GetIntroArgs;
|
|
110
145
|
|
|
111
146
|
/**
|
|
112
147
|
* Tool Definitions
|
|
@@ -127,6 +162,17 @@ declare const getThemeTypesDefinition: ToolDefinition;
|
|
|
127
162
|
declare const getNavigationTypesDefinition: ToolDefinition;
|
|
128
163
|
declare const getTranslateGuideDefinition: ToolDefinition;
|
|
129
164
|
declare const getStorageGuideDefinition: ToolDefinition;
|
|
165
|
+
declare const getAudioGuideDefinition: ToolDefinition;
|
|
166
|
+
declare const getCameraGuideDefinition: ToolDefinition;
|
|
167
|
+
declare const getFilesGuideDefinition: ToolDefinition;
|
|
168
|
+
declare const getOauthClientGuideDefinition: ToolDefinition;
|
|
169
|
+
declare const getAnimateGuideDefinition: ToolDefinition;
|
|
170
|
+
declare const getDatagridGuideDefinition: ToolDefinition;
|
|
171
|
+
declare const getDatepickerGuideDefinition: ToolDefinition;
|
|
172
|
+
declare const getLottieGuideDefinition: ToolDefinition;
|
|
173
|
+
declare const getMarkdownGuideDefinition: ToolDefinition;
|
|
174
|
+
declare const getConfigGuideDefinition: ToolDefinition;
|
|
175
|
+
declare const getChartsGuideDefinition: ToolDefinition;
|
|
130
176
|
declare const listPackagesDefinition: ToolDefinition;
|
|
131
177
|
declare const getPackageDocsDefinition: ToolDefinition;
|
|
132
178
|
declare const searchPackagesDefinition: ToolDefinition;
|
|
@@ -134,6 +180,7 @@ declare const listRecipesDefinition: ToolDefinition;
|
|
|
134
180
|
declare const getRecipeDefinition: ToolDefinition;
|
|
135
181
|
declare const searchRecipesDefinition: ToolDefinition;
|
|
136
182
|
declare const getInstallGuideDefinition: ToolDefinition;
|
|
183
|
+
declare const getIntroDefinition: ToolDefinition;
|
|
137
184
|
/**
|
|
138
185
|
* Array of all tool definitions.
|
|
139
186
|
* Use this to register all tools with an MCP server.
|
|
@@ -198,9 +245,6 @@ declare function getComponentExamplesTs(args: GetComponentExamplesTsArgs): ToolR
|
|
|
198
245
|
* Get information about CLI commands and usage
|
|
199
246
|
*/
|
|
200
247
|
declare function getCliUsage(args?: GetCliUsageArgs): ToolResponse;
|
|
201
|
-
/**
|
|
202
|
-
* Search for Material Design Icons
|
|
203
|
-
*/
|
|
204
248
|
declare function searchIcons(args: SearchIconsArgs): ToolResponse;
|
|
205
249
|
/**
|
|
206
250
|
* Get TypeScript type definitions for theme types
|
|
@@ -218,6 +262,50 @@ declare function getTranslateGuide(args: GetTranslateGuideArgs): ToolResponse;
|
|
|
218
262
|
* Get documentation for the storage package
|
|
219
263
|
*/
|
|
220
264
|
declare function getStorageGuide(args: GetStorageGuideArgs): ToolResponse;
|
|
265
|
+
/**
|
|
266
|
+
* Get documentation for the audio package
|
|
267
|
+
*/
|
|
268
|
+
declare function getAudioGuide(args: GetAudioGuideArgs): ToolResponse;
|
|
269
|
+
/**
|
|
270
|
+
* Get documentation for the camera package
|
|
271
|
+
*/
|
|
272
|
+
declare function getCameraGuide(args: GetCameraGuideArgs): ToolResponse;
|
|
273
|
+
/**
|
|
274
|
+
* Get documentation for the files package
|
|
275
|
+
*/
|
|
276
|
+
declare function getFilesGuide(args: GetFilesGuideArgs): ToolResponse;
|
|
277
|
+
/**
|
|
278
|
+
* Get documentation for the oauth-client package
|
|
279
|
+
*/
|
|
280
|
+
declare function getOauthClientGuide(args: GetOauthClientGuideArgs): ToolResponse;
|
|
281
|
+
/**
|
|
282
|
+
* Get documentation for the animate package
|
|
283
|
+
*/
|
|
284
|
+
declare function getAnimateGuide(args: GetAnimateGuideArgs): ToolResponse;
|
|
285
|
+
/**
|
|
286
|
+
* Get documentation for the datagrid package
|
|
287
|
+
*/
|
|
288
|
+
declare function getDatagridGuide(args: GetDatagridGuideArgs): ToolResponse;
|
|
289
|
+
/**
|
|
290
|
+
* Get documentation for the datepicker package
|
|
291
|
+
*/
|
|
292
|
+
declare function getDatepickerGuide(args: GetDatepickerGuideArgs): ToolResponse;
|
|
293
|
+
/**
|
|
294
|
+
* Get documentation for the lottie package
|
|
295
|
+
*/
|
|
296
|
+
declare function getLottieGuide(args: GetLottieGuideArgs): ToolResponse;
|
|
297
|
+
/**
|
|
298
|
+
* Get documentation for the markdown package
|
|
299
|
+
*/
|
|
300
|
+
declare function getMarkdownGuide(args: GetMarkdownGuideArgs): ToolResponse;
|
|
301
|
+
/**
|
|
302
|
+
* Get documentation for the config package
|
|
303
|
+
*/
|
|
304
|
+
declare function getConfigGuide(args: GetConfigGuideArgs): ToolResponse;
|
|
305
|
+
/**
|
|
306
|
+
* Get documentation for the charts package
|
|
307
|
+
*/
|
|
308
|
+
declare function getChartsGuide(args: GetChartsGuideArgs): ToolResponse;
|
|
221
309
|
/**
|
|
222
310
|
* List all available packages
|
|
223
311
|
*/
|
|
@@ -246,6 +334,10 @@ declare function searchRecipes(args: SearchRecipesArgs): ToolResponse;
|
|
|
246
334
|
* Get detailed installation guide for a package
|
|
247
335
|
*/
|
|
248
336
|
declare function getInstallGuide(args: GetInstallGuideArgs): ToolResponse;
|
|
337
|
+
/**
|
|
338
|
+
* Get a comprehensive introduction to the Idealyst framework
|
|
339
|
+
*/
|
|
340
|
+
declare function getIntro(_args?: GetIntroArgs): ToolResponse;
|
|
249
341
|
/**
|
|
250
342
|
* Map of all tool handlers by name.
|
|
251
343
|
* Use this for dynamic tool dispatch.
|
|
@@ -272,4 +364,4 @@ declare function getComponentRegistry(): Record<string, any>;
|
|
|
272
364
|
*/
|
|
273
365
|
declare function getRegistryThemeValues(): any;
|
|
274
366
|
|
|
275
|
-
export { type GetCliUsageArgs, type GetComponentDocsArgs, type GetComponentExampleArgs, type GetComponentExamplesTsArgs, type GetComponentTypesArgs, type GetInstallGuideArgs, type GetNavigationTypesArgs, type GetPackageDocsArgs, type GetRecipeArgs, type GetStorageGuideArgs, type GetThemeTypesArgs, type GetTranslateGuideArgs, type ListComponentsArgs, type ListPackagesArgs, type ListRecipesArgs, type PropertySchema, type SearchComponentsArgs, type SearchIconsArgs, type SearchPackagesArgs, type SearchRecipesArgs, type ToolArgs, type ToolContent, type ToolDefinition, type ToolHandler, type ToolInputSchema, type ToolName, type ToolResponse, callTool, getAvailableComponents, getCliUsage, getCliUsageDefinition, getComponentDocs, getComponentDocsDefinition, getComponentExample, getComponentExampleDefinition, getComponentExamplesTs, getComponentExamplesTsDefinition, getComponentRegistry, getComponentTypes, getComponentTypesDefinition, getInstallGuide, getInstallGuideDefinition, getNavigationTypes, getNavigationTypesDefinition, getPackageDocs, getPackageDocsDefinition, getRecipe, getRecipeDefinition, getRegistryThemeValues, getStorageGuide, getStorageGuideDefinition, getThemeTypes, getThemeTypesDefinition, getTranslateGuide, getTranslateGuideDefinition, listComponents, listComponentsDefinition, listPackages, listPackagesDefinition, listRecipes, listRecipesDefinition, searchComponents, searchComponentsDefinition, searchIcons, searchIconsDefinition, searchPackages, searchPackagesDefinition, searchRecipes, searchRecipesDefinition, toolDefinitionMap, toolDefinitions, toolHandlers };
|
|
367
|
+
export { type GetAnimateGuideArgs, type GetAudioGuideArgs, type GetCameraGuideArgs, type GetChartsGuideArgs, type GetCliUsageArgs, type GetComponentDocsArgs, type GetComponentExampleArgs, type GetComponentExamplesTsArgs, type GetComponentTypesArgs, type GetConfigGuideArgs, type GetDatagridGuideArgs, type GetDatepickerGuideArgs, type GetFilesGuideArgs, type GetInstallGuideArgs, type GetIntroArgs, type GetLottieGuideArgs, type GetMarkdownGuideArgs, type GetNavigationTypesArgs, type GetOauthClientGuideArgs, type GetPackageDocsArgs, type GetRecipeArgs, type GetStorageGuideArgs, type GetThemeTypesArgs, type GetTranslateGuideArgs, type ListComponentsArgs, type ListPackagesArgs, type ListRecipesArgs, type PropertySchema, type SearchComponentsArgs, type SearchIconsArgs, type SearchPackagesArgs, type SearchRecipesArgs, type ToolArgs, type ToolContent, type ToolDefinition, type ToolHandler, type ToolInputSchema, type ToolName, type ToolResponse, callTool, getAnimateGuide, getAnimateGuideDefinition, getAudioGuide, getAudioGuideDefinition, getAvailableComponents, getCameraGuide, getCameraGuideDefinition, getChartsGuide, getChartsGuideDefinition, getCliUsage, getCliUsageDefinition, getComponentDocs, getComponentDocsDefinition, getComponentExample, getComponentExampleDefinition, getComponentExamplesTs, getComponentExamplesTsDefinition, getComponentRegistry, getComponentTypes, getComponentTypesDefinition, getConfigGuide, getConfigGuideDefinition, getDatagridGuide, getDatagridGuideDefinition, getDatepickerGuide, getDatepickerGuideDefinition, getFilesGuide, getFilesGuideDefinition, getInstallGuide, getInstallGuideDefinition, getIntro, getIntroDefinition, getLottieGuide, getLottieGuideDefinition, getMarkdownGuide, getMarkdownGuideDefinition, getNavigationTypes, getNavigationTypesDefinition, getOauthClientGuide, getOauthClientGuideDefinition, getPackageDocs, getPackageDocsDefinition, getRecipe, getRecipeDefinition, getRegistryThemeValues, getStorageGuide, getStorageGuideDefinition, getThemeTypes, getThemeTypesDefinition, getTranslateGuide, getTranslateGuideDefinition, listComponents, listComponentsDefinition, listPackages, listPackagesDefinition, listRecipes, listRecipesDefinition, searchComponents, searchComponentsDefinition, searchIcons, searchIconsDefinition, searchPackages, searchPackagesDefinition, searchRecipes, searchRecipesDefinition, toolDefinitionMap, toolDefinitions, toolHandlers };
|
package/dist/tools/index.d.ts
CHANGED
|
@@ -77,11 +77,44 @@ interface GetNavigationTypesArgs {
|
|
|
77
77
|
format?: "typescript" | "json" | "both";
|
|
78
78
|
}
|
|
79
79
|
interface GetTranslateGuideArgs {
|
|
80
|
-
topic: "overview" | "runtime-api" | "babel-plugin" | "translation-files" | "examples";
|
|
80
|
+
topic: "overview" | "api" | "runtime-api" | "babel-plugin" | "translation-files" | "examples";
|
|
81
81
|
}
|
|
82
82
|
interface GetStorageGuideArgs {
|
|
83
83
|
topic: "overview" | "api" | "examples";
|
|
84
84
|
}
|
|
85
|
+
interface GetAudioGuideArgs {
|
|
86
|
+
topic: "overview" | "api" | "examples";
|
|
87
|
+
}
|
|
88
|
+
interface GetCameraGuideArgs {
|
|
89
|
+
topic: "overview" | "api" | "examples";
|
|
90
|
+
}
|
|
91
|
+
interface GetFilesGuideArgs {
|
|
92
|
+
topic: "overview" | "api" | "examples";
|
|
93
|
+
}
|
|
94
|
+
interface GetOauthClientGuideArgs {
|
|
95
|
+
topic: "overview" | "api" | "examples";
|
|
96
|
+
}
|
|
97
|
+
interface GetAnimateGuideArgs {
|
|
98
|
+
topic: "overview" | "api" | "examples";
|
|
99
|
+
}
|
|
100
|
+
interface GetDatagridGuideArgs {
|
|
101
|
+
topic: "overview" | "api" | "examples";
|
|
102
|
+
}
|
|
103
|
+
interface GetDatepickerGuideArgs {
|
|
104
|
+
topic: "overview" | "api" | "examples";
|
|
105
|
+
}
|
|
106
|
+
interface GetLottieGuideArgs {
|
|
107
|
+
topic: "overview" | "api" | "examples";
|
|
108
|
+
}
|
|
109
|
+
interface GetMarkdownGuideArgs {
|
|
110
|
+
topic: "overview" | "api" | "examples";
|
|
111
|
+
}
|
|
112
|
+
interface GetConfigGuideArgs {
|
|
113
|
+
topic: "overview" | "api" | "examples";
|
|
114
|
+
}
|
|
115
|
+
interface GetChartsGuideArgs {
|
|
116
|
+
topic: "overview" | "api" | "examples";
|
|
117
|
+
}
|
|
85
118
|
interface ListPackagesArgs {
|
|
86
119
|
category?: "core" | "ui" | "media" | "data" | "auth" | "utility" | "tooling";
|
|
87
120
|
}
|
|
@@ -105,8 +138,10 @@ interface SearchRecipesArgs {
|
|
|
105
138
|
interface GetInstallGuideArgs {
|
|
106
139
|
package: string;
|
|
107
140
|
}
|
|
108
|
-
|
|
109
|
-
|
|
141
|
+
interface GetIntroArgs {
|
|
142
|
+
}
|
|
143
|
+
type ToolName = "list_components" | "get_component_docs" | "get_component_example" | "search_components" | "get_component_types" | "get_component_examples_ts" | "get_cli_usage" | "search_icons" | "get_theme_types" | "get_navigation_types" | "get_translate_guide" | "get_storage_guide" | "get_audio_guide" | "get_camera_guide" | "get_files_guide" | "get_oauth_client_guide" | "get_animate_guide" | "get_datagrid_guide" | "get_datepicker_guide" | "get_lottie_guide" | "get_markdown_guide" | "get_config_guide" | "get_charts_guide" | "list_packages" | "get_package_docs" | "search_packages" | "list_recipes" | "get_recipe" | "search_recipes" | "get_install_guide" | "get_intro";
|
|
144
|
+
type ToolArgs = ListComponentsArgs | GetComponentDocsArgs | GetComponentExampleArgs | SearchComponentsArgs | GetComponentTypesArgs | GetComponentExamplesTsArgs | GetCliUsageArgs | SearchIconsArgs | GetThemeTypesArgs | GetNavigationTypesArgs | GetTranslateGuideArgs | GetStorageGuideArgs | GetAudioGuideArgs | GetCameraGuideArgs | GetFilesGuideArgs | GetOauthClientGuideArgs | GetAnimateGuideArgs | GetDatagridGuideArgs | GetDatepickerGuideArgs | GetLottieGuideArgs | GetMarkdownGuideArgs | GetConfigGuideArgs | GetChartsGuideArgs | ListPackagesArgs | GetPackageDocsArgs | SearchPackagesArgs | ListRecipesArgs | GetRecipeArgs | SearchRecipesArgs | GetInstallGuideArgs | GetIntroArgs;
|
|
110
145
|
|
|
111
146
|
/**
|
|
112
147
|
* Tool Definitions
|
|
@@ -127,6 +162,17 @@ declare const getThemeTypesDefinition: ToolDefinition;
|
|
|
127
162
|
declare const getNavigationTypesDefinition: ToolDefinition;
|
|
128
163
|
declare const getTranslateGuideDefinition: ToolDefinition;
|
|
129
164
|
declare const getStorageGuideDefinition: ToolDefinition;
|
|
165
|
+
declare const getAudioGuideDefinition: ToolDefinition;
|
|
166
|
+
declare const getCameraGuideDefinition: ToolDefinition;
|
|
167
|
+
declare const getFilesGuideDefinition: ToolDefinition;
|
|
168
|
+
declare const getOauthClientGuideDefinition: ToolDefinition;
|
|
169
|
+
declare const getAnimateGuideDefinition: ToolDefinition;
|
|
170
|
+
declare const getDatagridGuideDefinition: ToolDefinition;
|
|
171
|
+
declare const getDatepickerGuideDefinition: ToolDefinition;
|
|
172
|
+
declare const getLottieGuideDefinition: ToolDefinition;
|
|
173
|
+
declare const getMarkdownGuideDefinition: ToolDefinition;
|
|
174
|
+
declare const getConfigGuideDefinition: ToolDefinition;
|
|
175
|
+
declare const getChartsGuideDefinition: ToolDefinition;
|
|
130
176
|
declare const listPackagesDefinition: ToolDefinition;
|
|
131
177
|
declare const getPackageDocsDefinition: ToolDefinition;
|
|
132
178
|
declare const searchPackagesDefinition: ToolDefinition;
|
|
@@ -134,6 +180,7 @@ declare const listRecipesDefinition: ToolDefinition;
|
|
|
134
180
|
declare const getRecipeDefinition: ToolDefinition;
|
|
135
181
|
declare const searchRecipesDefinition: ToolDefinition;
|
|
136
182
|
declare const getInstallGuideDefinition: ToolDefinition;
|
|
183
|
+
declare const getIntroDefinition: ToolDefinition;
|
|
137
184
|
/**
|
|
138
185
|
* Array of all tool definitions.
|
|
139
186
|
* Use this to register all tools with an MCP server.
|
|
@@ -198,9 +245,6 @@ declare function getComponentExamplesTs(args: GetComponentExamplesTsArgs): ToolR
|
|
|
198
245
|
* Get information about CLI commands and usage
|
|
199
246
|
*/
|
|
200
247
|
declare function getCliUsage(args?: GetCliUsageArgs): ToolResponse;
|
|
201
|
-
/**
|
|
202
|
-
* Search for Material Design Icons
|
|
203
|
-
*/
|
|
204
248
|
declare function searchIcons(args: SearchIconsArgs): ToolResponse;
|
|
205
249
|
/**
|
|
206
250
|
* Get TypeScript type definitions for theme types
|
|
@@ -218,6 +262,50 @@ declare function getTranslateGuide(args: GetTranslateGuideArgs): ToolResponse;
|
|
|
218
262
|
* Get documentation for the storage package
|
|
219
263
|
*/
|
|
220
264
|
declare function getStorageGuide(args: GetStorageGuideArgs): ToolResponse;
|
|
265
|
+
/**
|
|
266
|
+
* Get documentation for the audio package
|
|
267
|
+
*/
|
|
268
|
+
declare function getAudioGuide(args: GetAudioGuideArgs): ToolResponse;
|
|
269
|
+
/**
|
|
270
|
+
* Get documentation for the camera package
|
|
271
|
+
*/
|
|
272
|
+
declare function getCameraGuide(args: GetCameraGuideArgs): ToolResponse;
|
|
273
|
+
/**
|
|
274
|
+
* Get documentation for the files package
|
|
275
|
+
*/
|
|
276
|
+
declare function getFilesGuide(args: GetFilesGuideArgs): ToolResponse;
|
|
277
|
+
/**
|
|
278
|
+
* Get documentation for the oauth-client package
|
|
279
|
+
*/
|
|
280
|
+
declare function getOauthClientGuide(args: GetOauthClientGuideArgs): ToolResponse;
|
|
281
|
+
/**
|
|
282
|
+
* Get documentation for the animate package
|
|
283
|
+
*/
|
|
284
|
+
declare function getAnimateGuide(args: GetAnimateGuideArgs): ToolResponse;
|
|
285
|
+
/**
|
|
286
|
+
* Get documentation for the datagrid package
|
|
287
|
+
*/
|
|
288
|
+
declare function getDatagridGuide(args: GetDatagridGuideArgs): ToolResponse;
|
|
289
|
+
/**
|
|
290
|
+
* Get documentation for the datepicker package
|
|
291
|
+
*/
|
|
292
|
+
declare function getDatepickerGuide(args: GetDatepickerGuideArgs): ToolResponse;
|
|
293
|
+
/**
|
|
294
|
+
* Get documentation for the lottie package
|
|
295
|
+
*/
|
|
296
|
+
declare function getLottieGuide(args: GetLottieGuideArgs): ToolResponse;
|
|
297
|
+
/**
|
|
298
|
+
* Get documentation for the markdown package
|
|
299
|
+
*/
|
|
300
|
+
declare function getMarkdownGuide(args: GetMarkdownGuideArgs): ToolResponse;
|
|
301
|
+
/**
|
|
302
|
+
* Get documentation for the config package
|
|
303
|
+
*/
|
|
304
|
+
declare function getConfigGuide(args: GetConfigGuideArgs): ToolResponse;
|
|
305
|
+
/**
|
|
306
|
+
* Get documentation for the charts package
|
|
307
|
+
*/
|
|
308
|
+
declare function getChartsGuide(args: GetChartsGuideArgs): ToolResponse;
|
|
221
309
|
/**
|
|
222
310
|
* List all available packages
|
|
223
311
|
*/
|
|
@@ -246,6 +334,10 @@ declare function searchRecipes(args: SearchRecipesArgs): ToolResponse;
|
|
|
246
334
|
* Get detailed installation guide for a package
|
|
247
335
|
*/
|
|
248
336
|
declare function getInstallGuide(args: GetInstallGuideArgs): ToolResponse;
|
|
337
|
+
/**
|
|
338
|
+
* Get a comprehensive introduction to the Idealyst framework
|
|
339
|
+
*/
|
|
340
|
+
declare function getIntro(_args?: GetIntroArgs): ToolResponse;
|
|
249
341
|
/**
|
|
250
342
|
* Map of all tool handlers by name.
|
|
251
343
|
* Use this for dynamic tool dispatch.
|
|
@@ -272,4 +364,4 @@ declare function getComponentRegistry(): Record<string, any>;
|
|
|
272
364
|
*/
|
|
273
365
|
declare function getRegistryThemeValues(): any;
|
|
274
366
|
|
|
275
|
-
export { type GetCliUsageArgs, type GetComponentDocsArgs, type GetComponentExampleArgs, type GetComponentExamplesTsArgs, type GetComponentTypesArgs, type GetInstallGuideArgs, type GetNavigationTypesArgs, type GetPackageDocsArgs, type GetRecipeArgs, type GetStorageGuideArgs, type GetThemeTypesArgs, type GetTranslateGuideArgs, type ListComponentsArgs, type ListPackagesArgs, type ListRecipesArgs, type PropertySchema, type SearchComponentsArgs, type SearchIconsArgs, type SearchPackagesArgs, type SearchRecipesArgs, type ToolArgs, type ToolContent, type ToolDefinition, type ToolHandler, type ToolInputSchema, type ToolName, type ToolResponse, callTool, getAvailableComponents, getCliUsage, getCliUsageDefinition, getComponentDocs, getComponentDocsDefinition, getComponentExample, getComponentExampleDefinition, getComponentExamplesTs, getComponentExamplesTsDefinition, getComponentRegistry, getComponentTypes, getComponentTypesDefinition, getInstallGuide, getInstallGuideDefinition, getNavigationTypes, getNavigationTypesDefinition, getPackageDocs, getPackageDocsDefinition, getRecipe, getRecipeDefinition, getRegistryThemeValues, getStorageGuide, getStorageGuideDefinition, getThemeTypes, getThemeTypesDefinition, getTranslateGuide, getTranslateGuideDefinition, listComponents, listComponentsDefinition, listPackages, listPackagesDefinition, listRecipes, listRecipesDefinition, searchComponents, searchComponentsDefinition, searchIcons, searchIconsDefinition, searchPackages, searchPackagesDefinition, searchRecipes, searchRecipesDefinition, toolDefinitionMap, toolDefinitions, toolHandlers };
|
|
367
|
+
export { type GetAnimateGuideArgs, type GetAudioGuideArgs, type GetCameraGuideArgs, type GetChartsGuideArgs, type GetCliUsageArgs, type GetComponentDocsArgs, type GetComponentExampleArgs, type GetComponentExamplesTsArgs, type GetComponentTypesArgs, type GetConfigGuideArgs, type GetDatagridGuideArgs, type GetDatepickerGuideArgs, type GetFilesGuideArgs, type GetInstallGuideArgs, type GetIntroArgs, type GetLottieGuideArgs, type GetMarkdownGuideArgs, type GetNavigationTypesArgs, type GetOauthClientGuideArgs, type GetPackageDocsArgs, type GetRecipeArgs, type GetStorageGuideArgs, type GetThemeTypesArgs, type GetTranslateGuideArgs, type ListComponentsArgs, type ListPackagesArgs, type ListRecipesArgs, type PropertySchema, type SearchComponentsArgs, type SearchIconsArgs, type SearchPackagesArgs, type SearchRecipesArgs, type ToolArgs, type ToolContent, type ToolDefinition, type ToolHandler, type ToolInputSchema, type ToolName, type ToolResponse, callTool, getAnimateGuide, getAnimateGuideDefinition, getAudioGuide, getAudioGuideDefinition, getAvailableComponents, getCameraGuide, getCameraGuideDefinition, getChartsGuide, getChartsGuideDefinition, getCliUsage, getCliUsageDefinition, getComponentDocs, getComponentDocsDefinition, getComponentExample, getComponentExampleDefinition, getComponentExamplesTs, getComponentExamplesTsDefinition, getComponentRegistry, getComponentTypes, getComponentTypesDefinition, getConfigGuide, getConfigGuideDefinition, getDatagridGuide, getDatagridGuideDefinition, getDatepickerGuide, getDatepickerGuideDefinition, getFilesGuide, getFilesGuideDefinition, getInstallGuide, getInstallGuideDefinition, getIntro, getIntroDefinition, getLottieGuide, getLottieGuideDefinition, getMarkdownGuide, getMarkdownGuideDefinition, getNavigationTypes, getNavigationTypesDefinition, getOauthClientGuide, getOauthClientGuideDefinition, getPackageDocs, getPackageDocsDefinition, getRecipe, getRecipeDefinition, getRegistryThemeValues, getStorageGuide, getStorageGuideDefinition, getThemeTypes, getThemeTypesDefinition, getTranslateGuide, getTranslateGuideDefinition, listComponents, listComponentsDefinition, listPackages, listPackagesDefinition, listRecipes, listRecipesDefinition, searchComponents, searchComponentsDefinition, searchIcons, searchIconsDefinition, searchPackages, searchPackagesDefinition, searchRecipes, searchRecipesDefinition, toolDefinitionMap, toolDefinitions, toolHandlers };
|
package/dist/tools/index.js
CHANGED
|
@@ -1,6 +1,14 @@
|
|
|
1
1
|
import {
|
|
2
2
|
callTool,
|
|
3
|
+
getAnimateGuide,
|
|
4
|
+
getAnimateGuideDefinition,
|
|
5
|
+
getAudioGuide,
|
|
6
|
+
getAudioGuideDefinition,
|
|
3
7
|
getAvailableComponents,
|
|
8
|
+
getCameraGuide,
|
|
9
|
+
getCameraGuideDefinition,
|
|
10
|
+
getChartsGuide,
|
|
11
|
+
getChartsGuideDefinition,
|
|
4
12
|
getCliUsage,
|
|
5
13
|
getCliUsageDefinition,
|
|
6
14
|
getComponentDocs,
|
|
@@ -12,10 +20,26 @@ import {
|
|
|
12
20
|
getComponentRegistry,
|
|
13
21
|
getComponentTypes,
|
|
14
22
|
getComponentTypesDefinition,
|
|
23
|
+
getConfigGuide,
|
|
24
|
+
getConfigGuideDefinition,
|
|
25
|
+
getDatagridGuide,
|
|
26
|
+
getDatagridGuideDefinition,
|
|
27
|
+
getDatepickerGuide,
|
|
28
|
+
getDatepickerGuideDefinition,
|
|
29
|
+
getFilesGuide,
|
|
30
|
+
getFilesGuideDefinition,
|
|
15
31
|
getInstallGuide,
|
|
16
32
|
getInstallGuideDefinition,
|
|
33
|
+
getIntro,
|
|
34
|
+
getIntroDefinition,
|
|
35
|
+
getLottieGuide,
|
|
36
|
+
getLottieGuideDefinition,
|
|
37
|
+
getMarkdownGuide,
|
|
38
|
+
getMarkdownGuideDefinition,
|
|
17
39
|
getNavigationTypes,
|
|
18
40
|
getNavigationTypesDefinition,
|
|
41
|
+
getOauthClientGuide,
|
|
42
|
+
getOauthClientGuideDefinition,
|
|
19
43
|
getPackageDocs,
|
|
20
44
|
getPackageDocsDefinition,
|
|
21
45
|
getRecipe,
|
|
@@ -44,10 +68,18 @@ import {
|
|
|
44
68
|
toolDefinitionMap,
|
|
45
69
|
toolDefinitions,
|
|
46
70
|
toolHandlers
|
|
47
|
-
} from "../chunk-
|
|
71
|
+
} from "../chunk-ZDB2NURA.js";
|
|
48
72
|
export {
|
|
49
73
|
callTool,
|
|
74
|
+
getAnimateGuide,
|
|
75
|
+
getAnimateGuideDefinition,
|
|
76
|
+
getAudioGuide,
|
|
77
|
+
getAudioGuideDefinition,
|
|
50
78
|
getAvailableComponents,
|
|
79
|
+
getCameraGuide,
|
|
80
|
+
getCameraGuideDefinition,
|
|
81
|
+
getChartsGuide,
|
|
82
|
+
getChartsGuideDefinition,
|
|
51
83
|
getCliUsage,
|
|
52
84
|
getCliUsageDefinition,
|
|
53
85
|
getComponentDocs,
|
|
@@ -59,10 +91,26 @@ export {
|
|
|
59
91
|
getComponentRegistry,
|
|
60
92
|
getComponentTypes,
|
|
61
93
|
getComponentTypesDefinition,
|
|
94
|
+
getConfigGuide,
|
|
95
|
+
getConfigGuideDefinition,
|
|
96
|
+
getDatagridGuide,
|
|
97
|
+
getDatagridGuideDefinition,
|
|
98
|
+
getDatepickerGuide,
|
|
99
|
+
getDatepickerGuideDefinition,
|
|
100
|
+
getFilesGuide,
|
|
101
|
+
getFilesGuideDefinition,
|
|
62
102
|
getInstallGuide,
|
|
63
103
|
getInstallGuideDefinition,
|
|
104
|
+
getIntro,
|
|
105
|
+
getIntroDefinition,
|
|
106
|
+
getLottieGuide,
|
|
107
|
+
getLottieGuideDefinition,
|
|
108
|
+
getMarkdownGuide,
|
|
109
|
+
getMarkdownGuideDefinition,
|
|
64
110
|
getNavigationTypes,
|
|
65
111
|
getNavigationTypesDefinition,
|
|
112
|
+
getOauthClientGuide,
|
|
113
|
+
getOauthClientGuideDefinition,
|
|
66
114
|
getPackageDocs,
|
|
67
115
|
getPackageDocsDefinition,
|
|
68
116
|
getRecipe,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@idealyst/mcp-server",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.104",
|
|
4
4
|
"description": "MCP server providing documentation and examples for the Idealyst framework",
|
|
5
5
|
"main": "dist/index.cjs",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -37,7 +37,8 @@
|
|
|
37
37
|
"eval": "tsx eval/src/run-eval.ts",
|
|
38
38
|
"eval:all": "tsx eval/src/run-eval.ts --scenarios all",
|
|
39
39
|
"eval:quick": "tsx eval/src/run-eval.ts --scenarios login-screen --verbose",
|
|
40
|
-
"eval:list": "tsx eval/src/run-eval.ts --list"
|
|
40
|
+
"eval:list": "tsx eval/src/run-eval.ts --list",
|
|
41
|
+
"eval:server": "tsx eval/src/server.ts"
|
|
41
42
|
},
|
|
42
43
|
"publishConfig": {
|
|
43
44
|
"access": "public",
|
|
@@ -53,10 +54,10 @@
|
|
|
53
54
|
"author": "Idealyst",
|
|
54
55
|
"license": "MIT",
|
|
55
56
|
"dependencies": {
|
|
56
|
-
"@idealyst/components": "^1.2.
|
|
57
|
-
"@idealyst/navigation": "^1.2.
|
|
58
|
-
"@idealyst/theme": "^1.2.
|
|
59
|
-
"@idealyst/tooling": "^1.2.
|
|
57
|
+
"@idealyst/components": "^1.2.104",
|
|
58
|
+
"@idealyst/navigation": "^1.2.104",
|
|
59
|
+
"@idealyst/theme": "^1.2.104",
|
|
60
|
+
"@idealyst/tooling": "^1.2.104",
|
|
60
61
|
"@modelcontextprotocol/sdk": "^1.0.4"
|
|
61
62
|
},
|
|
62
63
|
"devDependencies": {
|