@idealyst/mcp-server 1.2.107 → 1.2.108
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-NX77GGPR.js → chunk-7WPOVADU.js} +2152 -118
- package/dist/chunk-7WPOVADU.js.map +1 -0
- package/dist/index.cjs +2183 -155
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/tools/index.cjs +2157 -117
- package/dist/tools/index.cjs.map +1 -1
- package/dist/tools/index.d.cts +28 -4
- package/dist/tools/index.d.ts +28 -4
- package/dist/tools/index.js +13 -1
- package/package.json +5 -5
- package/dist/chunk-NX77GGPR.js.map +0 -1
package/dist/tools/index.d.cts
CHANGED
|
@@ -80,7 +80,7 @@ interface GetTranslateGuideArgs {
|
|
|
80
80
|
topic: "overview" | "api" | "runtime-api" | "babel-plugin" | "translation-files" | "examples";
|
|
81
81
|
}
|
|
82
82
|
interface GetStorageGuideArgs {
|
|
83
|
-
topic: "overview" | "api" | "examples";
|
|
83
|
+
topic: "overview" | "api" | "examples" | "secure";
|
|
84
84
|
}
|
|
85
85
|
interface GetAudioGuideArgs {
|
|
86
86
|
topic: "overview" | "api" | "examples";
|
|
@@ -115,6 +115,15 @@ interface GetConfigGuideArgs {
|
|
|
115
115
|
interface GetChartsGuideArgs {
|
|
116
116
|
topic: "overview" | "api" | "examples";
|
|
117
117
|
}
|
|
118
|
+
interface GetClipboardGuideArgs {
|
|
119
|
+
topic: "overview" | "api" | "examples";
|
|
120
|
+
}
|
|
121
|
+
interface GetBiometricsGuideArgs {
|
|
122
|
+
topic: "overview" | "api" | "examples";
|
|
123
|
+
}
|
|
124
|
+
interface GetPaymentsGuideArgs {
|
|
125
|
+
topic: "overview" | "api" | "examples";
|
|
126
|
+
}
|
|
118
127
|
interface ListPackagesArgs {
|
|
119
128
|
category?: "core" | "ui" | "media" | "data" | "auth" | "utility" | "tooling";
|
|
120
129
|
}
|
|
@@ -140,8 +149,8 @@ interface GetInstallGuideArgs {
|
|
|
140
149
|
}
|
|
141
150
|
interface GetIntroArgs {
|
|
142
151
|
}
|
|
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;
|
|
152
|
+
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" | "get_clipboard_guide" | "get_biometrics_guide" | "get_payments_guide" | "list_packages" | "get_package_docs" | "search_packages" | "list_recipes" | "get_recipe" | "search_recipes" | "get_install_guide" | "get_intro";
|
|
153
|
+
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 | GetClipboardGuideArgs | GetBiometricsGuideArgs | GetPaymentsGuideArgs | ListPackagesArgs | GetPackageDocsArgs | SearchPackagesArgs | ListRecipesArgs | GetRecipeArgs | SearchRecipesArgs | GetInstallGuideArgs | GetIntroArgs;
|
|
145
154
|
|
|
146
155
|
/**
|
|
147
156
|
* Tool Definitions
|
|
@@ -173,6 +182,9 @@ declare const getLottieGuideDefinition: ToolDefinition;
|
|
|
173
182
|
declare const getMarkdownGuideDefinition: ToolDefinition;
|
|
174
183
|
declare const getConfigGuideDefinition: ToolDefinition;
|
|
175
184
|
declare const getChartsGuideDefinition: ToolDefinition;
|
|
185
|
+
declare const getClipboardGuideDefinition: ToolDefinition;
|
|
186
|
+
declare const getBiometricsGuideDefinition: ToolDefinition;
|
|
187
|
+
declare const getPaymentsGuideDefinition: ToolDefinition;
|
|
176
188
|
declare const listPackagesDefinition: ToolDefinition;
|
|
177
189
|
declare const getPackageDocsDefinition: ToolDefinition;
|
|
178
190
|
declare const searchPackagesDefinition: ToolDefinition;
|
|
@@ -306,6 +318,18 @@ declare function getConfigGuide(args: GetConfigGuideArgs): ToolResponse;
|
|
|
306
318
|
* Get documentation for the charts package
|
|
307
319
|
*/
|
|
308
320
|
declare function getChartsGuide(args: GetChartsGuideArgs): ToolResponse;
|
|
321
|
+
/**
|
|
322
|
+
* Get documentation for the clipboard package
|
|
323
|
+
*/
|
|
324
|
+
declare function getClipboardGuide(args: GetClipboardGuideArgs): ToolResponse;
|
|
325
|
+
/**
|
|
326
|
+
* Get documentation for the biometrics package
|
|
327
|
+
*/
|
|
328
|
+
declare function getBiometricsGuide(args: GetBiometricsGuideArgs): ToolResponse;
|
|
329
|
+
/**
|
|
330
|
+
* Get documentation for the payments package
|
|
331
|
+
*/
|
|
332
|
+
declare function getPaymentsGuide(args: GetPaymentsGuideArgs): ToolResponse;
|
|
309
333
|
/**
|
|
310
334
|
* List all available packages
|
|
311
335
|
*/
|
|
@@ -364,4 +388,4 @@ declare function getComponentRegistry(): Record<string, any>;
|
|
|
364
388
|
*/
|
|
365
389
|
declare function getRegistryThemeValues(): any;
|
|
366
390
|
|
|
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 };
|
|
391
|
+
export { type GetAnimateGuideArgs, type GetAudioGuideArgs, type GetBiometricsGuideArgs, type GetCameraGuideArgs, type GetChartsGuideArgs, type GetCliUsageArgs, type GetClipboardGuideArgs, 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 GetPaymentsGuideArgs, 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, getBiometricsGuide, getBiometricsGuideDefinition, getCameraGuide, getCameraGuideDefinition, getChartsGuide, getChartsGuideDefinition, getCliUsage, getCliUsageDefinition, getClipboardGuide, getClipboardGuideDefinition, 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, getPaymentsGuide, getPaymentsGuideDefinition, 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
|
@@ -80,7 +80,7 @@ interface GetTranslateGuideArgs {
|
|
|
80
80
|
topic: "overview" | "api" | "runtime-api" | "babel-plugin" | "translation-files" | "examples";
|
|
81
81
|
}
|
|
82
82
|
interface GetStorageGuideArgs {
|
|
83
|
-
topic: "overview" | "api" | "examples";
|
|
83
|
+
topic: "overview" | "api" | "examples" | "secure";
|
|
84
84
|
}
|
|
85
85
|
interface GetAudioGuideArgs {
|
|
86
86
|
topic: "overview" | "api" | "examples";
|
|
@@ -115,6 +115,15 @@ interface GetConfigGuideArgs {
|
|
|
115
115
|
interface GetChartsGuideArgs {
|
|
116
116
|
topic: "overview" | "api" | "examples";
|
|
117
117
|
}
|
|
118
|
+
interface GetClipboardGuideArgs {
|
|
119
|
+
topic: "overview" | "api" | "examples";
|
|
120
|
+
}
|
|
121
|
+
interface GetBiometricsGuideArgs {
|
|
122
|
+
topic: "overview" | "api" | "examples";
|
|
123
|
+
}
|
|
124
|
+
interface GetPaymentsGuideArgs {
|
|
125
|
+
topic: "overview" | "api" | "examples";
|
|
126
|
+
}
|
|
118
127
|
interface ListPackagesArgs {
|
|
119
128
|
category?: "core" | "ui" | "media" | "data" | "auth" | "utility" | "tooling";
|
|
120
129
|
}
|
|
@@ -140,8 +149,8 @@ interface GetInstallGuideArgs {
|
|
|
140
149
|
}
|
|
141
150
|
interface GetIntroArgs {
|
|
142
151
|
}
|
|
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;
|
|
152
|
+
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" | "get_clipboard_guide" | "get_biometrics_guide" | "get_payments_guide" | "list_packages" | "get_package_docs" | "search_packages" | "list_recipes" | "get_recipe" | "search_recipes" | "get_install_guide" | "get_intro";
|
|
153
|
+
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 | GetClipboardGuideArgs | GetBiometricsGuideArgs | GetPaymentsGuideArgs | ListPackagesArgs | GetPackageDocsArgs | SearchPackagesArgs | ListRecipesArgs | GetRecipeArgs | SearchRecipesArgs | GetInstallGuideArgs | GetIntroArgs;
|
|
145
154
|
|
|
146
155
|
/**
|
|
147
156
|
* Tool Definitions
|
|
@@ -173,6 +182,9 @@ declare const getLottieGuideDefinition: ToolDefinition;
|
|
|
173
182
|
declare const getMarkdownGuideDefinition: ToolDefinition;
|
|
174
183
|
declare const getConfigGuideDefinition: ToolDefinition;
|
|
175
184
|
declare const getChartsGuideDefinition: ToolDefinition;
|
|
185
|
+
declare const getClipboardGuideDefinition: ToolDefinition;
|
|
186
|
+
declare const getBiometricsGuideDefinition: ToolDefinition;
|
|
187
|
+
declare const getPaymentsGuideDefinition: ToolDefinition;
|
|
176
188
|
declare const listPackagesDefinition: ToolDefinition;
|
|
177
189
|
declare const getPackageDocsDefinition: ToolDefinition;
|
|
178
190
|
declare const searchPackagesDefinition: ToolDefinition;
|
|
@@ -306,6 +318,18 @@ declare function getConfigGuide(args: GetConfigGuideArgs): ToolResponse;
|
|
|
306
318
|
* Get documentation for the charts package
|
|
307
319
|
*/
|
|
308
320
|
declare function getChartsGuide(args: GetChartsGuideArgs): ToolResponse;
|
|
321
|
+
/**
|
|
322
|
+
* Get documentation for the clipboard package
|
|
323
|
+
*/
|
|
324
|
+
declare function getClipboardGuide(args: GetClipboardGuideArgs): ToolResponse;
|
|
325
|
+
/**
|
|
326
|
+
* Get documentation for the biometrics package
|
|
327
|
+
*/
|
|
328
|
+
declare function getBiometricsGuide(args: GetBiometricsGuideArgs): ToolResponse;
|
|
329
|
+
/**
|
|
330
|
+
* Get documentation for the payments package
|
|
331
|
+
*/
|
|
332
|
+
declare function getPaymentsGuide(args: GetPaymentsGuideArgs): ToolResponse;
|
|
309
333
|
/**
|
|
310
334
|
* List all available packages
|
|
311
335
|
*/
|
|
@@ -364,4 +388,4 @@ declare function getComponentRegistry(): Record<string, any>;
|
|
|
364
388
|
*/
|
|
365
389
|
declare function getRegistryThemeValues(): any;
|
|
366
390
|
|
|
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 };
|
|
391
|
+
export { type GetAnimateGuideArgs, type GetAudioGuideArgs, type GetBiometricsGuideArgs, type GetCameraGuideArgs, type GetChartsGuideArgs, type GetCliUsageArgs, type GetClipboardGuideArgs, 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 GetPaymentsGuideArgs, 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, getBiometricsGuide, getBiometricsGuideDefinition, getCameraGuide, getCameraGuideDefinition, getChartsGuide, getChartsGuideDefinition, getCliUsage, getCliUsageDefinition, getClipboardGuide, getClipboardGuideDefinition, 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, getPaymentsGuide, getPaymentsGuideDefinition, 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
|
@@ -5,12 +5,16 @@ import {
|
|
|
5
5
|
getAudioGuide,
|
|
6
6
|
getAudioGuideDefinition,
|
|
7
7
|
getAvailableComponents,
|
|
8
|
+
getBiometricsGuide,
|
|
9
|
+
getBiometricsGuideDefinition,
|
|
8
10
|
getCameraGuide,
|
|
9
11
|
getCameraGuideDefinition,
|
|
10
12
|
getChartsGuide,
|
|
11
13
|
getChartsGuideDefinition,
|
|
12
14
|
getCliUsage,
|
|
13
15
|
getCliUsageDefinition,
|
|
16
|
+
getClipboardGuide,
|
|
17
|
+
getClipboardGuideDefinition,
|
|
14
18
|
getComponentDocs,
|
|
15
19
|
getComponentDocsDefinition,
|
|
16
20
|
getComponentExample,
|
|
@@ -42,6 +46,8 @@ import {
|
|
|
42
46
|
getOauthClientGuideDefinition,
|
|
43
47
|
getPackageDocs,
|
|
44
48
|
getPackageDocsDefinition,
|
|
49
|
+
getPaymentsGuide,
|
|
50
|
+
getPaymentsGuideDefinition,
|
|
45
51
|
getRecipe,
|
|
46
52
|
getRecipeDefinition,
|
|
47
53
|
getRegistryThemeValues,
|
|
@@ -68,7 +74,7 @@ import {
|
|
|
68
74
|
toolDefinitionMap,
|
|
69
75
|
toolDefinitions,
|
|
70
76
|
toolHandlers
|
|
71
|
-
} from "../chunk-
|
|
77
|
+
} from "../chunk-7WPOVADU.js";
|
|
72
78
|
export {
|
|
73
79
|
callTool,
|
|
74
80
|
getAnimateGuide,
|
|
@@ -76,12 +82,16 @@ export {
|
|
|
76
82
|
getAudioGuide,
|
|
77
83
|
getAudioGuideDefinition,
|
|
78
84
|
getAvailableComponents,
|
|
85
|
+
getBiometricsGuide,
|
|
86
|
+
getBiometricsGuideDefinition,
|
|
79
87
|
getCameraGuide,
|
|
80
88
|
getCameraGuideDefinition,
|
|
81
89
|
getChartsGuide,
|
|
82
90
|
getChartsGuideDefinition,
|
|
83
91
|
getCliUsage,
|
|
84
92
|
getCliUsageDefinition,
|
|
93
|
+
getClipboardGuide,
|
|
94
|
+
getClipboardGuideDefinition,
|
|
85
95
|
getComponentDocs,
|
|
86
96
|
getComponentDocsDefinition,
|
|
87
97
|
getComponentExample,
|
|
@@ -113,6 +123,8 @@ export {
|
|
|
113
123
|
getOauthClientGuideDefinition,
|
|
114
124
|
getPackageDocs,
|
|
115
125
|
getPackageDocsDefinition,
|
|
126
|
+
getPaymentsGuide,
|
|
127
|
+
getPaymentsGuideDefinition,
|
|
116
128
|
getRecipe,
|
|
117
129
|
getRecipeDefinition,
|
|
118
130
|
getRegistryThemeValues,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@idealyst/mcp-server",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.108",
|
|
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",
|
|
@@ -54,10 +54,10 @@
|
|
|
54
54
|
"author": "Idealyst",
|
|
55
55
|
"license": "MIT",
|
|
56
56
|
"dependencies": {
|
|
57
|
-
"@idealyst/components": "^1.2.
|
|
58
|
-
"@idealyst/navigation": "^1.2.
|
|
59
|
-
"@idealyst/theme": "^1.2.
|
|
60
|
-
"@idealyst/tooling": "^1.2.
|
|
57
|
+
"@idealyst/components": "^1.2.108",
|
|
58
|
+
"@idealyst/navigation": "^1.2.108",
|
|
59
|
+
"@idealyst/theme": "^1.2.108",
|
|
60
|
+
"@idealyst/tooling": "^1.2.108",
|
|
61
61
|
"@modelcontextprotocol/sdk": "^1.0.4"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|