@idealyst/mcp-server 1.2.101 → 1.2.103

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.
@@ -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
- 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" | "list_packages" | "get_package_docs" | "search_packages" | "list_recipes" | "get_recipe" | "search_recipes" | "get_install_guide";
109
- type ToolArgs = ListComponentsArgs | GetComponentDocsArgs | GetComponentExampleArgs | SearchComponentsArgs | GetComponentTypesArgs | GetComponentExamplesTsArgs | GetCliUsageArgs | SearchIconsArgs | GetThemeTypesArgs | GetNavigationTypesArgs | GetTranslateGuideArgs | GetStorageGuideArgs | ListPackagesArgs | GetPackageDocsArgs | SearchPackagesArgs | ListRecipesArgs | GetRecipeArgs | SearchRecipesArgs | GetInstallGuideArgs;
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 };
@@ -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
- 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" | "list_packages" | "get_package_docs" | "search_packages" | "list_recipes" | "get_recipe" | "search_recipes" | "get_install_guide";
109
- type ToolArgs = ListComponentsArgs | GetComponentDocsArgs | GetComponentExampleArgs | SearchComponentsArgs | GetComponentTypesArgs | GetComponentExamplesTsArgs | GetCliUsageArgs | SearchIconsArgs | GetThemeTypesArgs | GetNavigationTypesArgs | GetTranslateGuideArgs | GetStorageGuideArgs | ListPackagesArgs | GetPackageDocsArgs | SearchPackagesArgs | ListRecipesArgs | GetRecipeArgs | SearchRecipesArgs | GetInstallGuideArgs;
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 };
@@ -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-SRNAGZJL.js";
71
+ } from "../chunk-74TE7CY7.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,
@@ -0,0 +1,161 @@
1
+ /**
2
+ * Image Component Examples
3
+ *
4
+ * These examples are type-checked against the actual ImageProps interface
5
+ * to ensure accuracy and correctness.
6
+ */
7
+
8
+ import React from 'react';
9
+ import { Image, View, Text } from '@idealyst/components';
10
+
11
+ // Example 1: Basic Image
12
+ export function BasicImage() {
13
+ return (
14
+ <Image
15
+ source={{ uri: 'https://picsum.photos/300/200' }}
16
+ alt="A random placeholder image"
17
+ />
18
+ );
19
+ }
20
+
21
+ // Example 2: Image with Dimensions
22
+ export function ImageWithDimensions() {
23
+ return (
24
+ <View spacing="md">
25
+ <Image
26
+ source={{ uri: 'https://picsum.photos/400/300' }}
27
+ alt="Fixed dimensions"
28
+ width={400}
29
+ height={300}
30
+ />
31
+ <Image
32
+ source={{ uri: 'https://picsum.photos/600/400' }}
33
+ alt="With aspect ratio"
34
+ width="100%"
35
+ aspectRatio={16 / 9}
36
+ />
37
+ </View>
38
+ );
39
+ }
40
+
41
+ // Example 3: Image Object Fit
42
+ export function ImageObjectFit() {
43
+ return (
44
+ <View spacing="md">
45
+ <Image
46
+ source={{ uri: 'https://picsum.photos/400/300' }}
47
+ alt="Contain mode"
48
+ width={200}
49
+ height={200}
50
+ objectFit="contain"
51
+ />
52
+ <Image
53
+ source={{ uri: 'https://picsum.photos/400/300' }}
54
+ alt="Cover mode"
55
+ width={200}
56
+ height={200}
57
+ objectFit="cover"
58
+ />
59
+ <Image
60
+ source={{ uri: 'https://picsum.photos/400/300' }}
61
+ alt="Fill mode"
62
+ width={200}
63
+ height={200}
64
+ objectFit="fill"
65
+ />
66
+ </View>
67
+ );
68
+ }
69
+
70
+ // Example 4: Image with Placeholder and Fallback
71
+ export function ImageWithPlaceholder() {
72
+ return (
73
+ <View spacing="md">
74
+ <Image
75
+ source={{ uri: 'https://picsum.photos/300/200' }}
76
+ alt="Image with placeholder"
77
+ width={300}
78
+ height={200}
79
+ placeholder={
80
+ <View style={{ width: 300, height: 200, backgroundColor: '#e0e0e0', justifyContent: 'center', alignItems: 'center' }}>
81
+ <Text>Loading...</Text>
82
+ </View>
83
+ }
84
+ fallback={
85
+ <View style={{ width: 300, height: 200, backgroundColor: '#f5f5f5', justifyContent: 'center', alignItems: 'center' }}>
86
+ <Text>Failed to load image</Text>
87
+ </View>
88
+ }
89
+ />
90
+ </View>
91
+ );
92
+ }
93
+
94
+ // Example 5: Image with Border Radius
95
+ export function ImageWithBorderRadius() {
96
+ return (
97
+ <View spacing="md">
98
+ <Image
99
+ source={{ uri: 'https://picsum.photos/200/200' }}
100
+ alt="Rounded corners"
101
+ width={200}
102
+ height={200}
103
+ borderRadius={12}
104
+ />
105
+ <Image
106
+ source={{ uri: 'https://picsum.photos/150/150' }}
107
+ alt="Circular image"
108
+ width={150}
109
+ height={150}
110
+ borderRadius={75}
111
+ />
112
+ </View>
113
+ );
114
+ }
115
+
116
+ // Example 6: Image with Lazy Loading
117
+ export function ImageLazyLoading() {
118
+ return (
119
+ <Image
120
+ source={{ uri: 'https://picsum.photos/600/400' }}
121
+ alt="Lazy loaded image"
122
+ width="100%"
123
+ aspectRatio={3 / 2}
124
+ loading="lazy"
125
+ />
126
+ );
127
+ }
128
+
129
+ // Example 7: Combined Image Features
130
+ export function CombinedImageFeatures() {
131
+ const [loaded, setLoaded] = React.useState(false);
132
+
133
+ return (
134
+ <View spacing="md">
135
+ <Image
136
+ source={{ uri: 'https://picsum.photos/400/300' }}
137
+ alt="Featured image with combined props"
138
+ width="100%"
139
+ aspectRatio={4 / 3}
140
+ objectFit="cover"
141
+ borderRadius={16}
142
+ loading="lazy"
143
+ placeholder={
144
+ <View style={{ width: '100%', aspectRatio: 4 / 3, backgroundColor: '#e0e0e0', justifyContent: 'center', alignItems: 'center' }}>
145
+ <Text>Loading...</Text>
146
+ </View>
147
+ }
148
+ fallback={
149
+ <View style={{ width: '100%', aspectRatio: 4 / 3, backgroundColor: '#f5f5f5', justifyContent: 'center', alignItems: 'center' }}>
150
+ <Text>Image unavailable</Text>
151
+ </View>
152
+ }
153
+ onLoad={() => setLoaded(true)}
154
+ onError={(error) => console.log('Image failed to load:', error)}
155
+ accessibilityLabel="A featured landscape photograph"
156
+ testID="featured-image"
157
+ />
158
+ {loaded && <Text>Image loaded successfully</Text>}
159
+ </View>
160
+ );
161
+ }
@@ -53,29 +53,28 @@ export function TextAlignment() {
53
53
  export function TextWithColor() {
54
54
  return (
55
55
  <View spacing="md">
56
- <Text >Blue text</Text>
57
- <Text >Green text</Text>
58
- <Text >Red text</Text>
59
- <Text >Gray text</Text>
60
- <Text >Purple text</Text>
56
+ <Text color="primary">Primary text color</Text>
57
+ <Text color="secondary">Secondary text color</Text>
58
+ <Text color="tertiary">Tertiary text color</Text>
59
+ <Text color="inverse">Inverse text color</Text>
61
60
  </View>
62
61
  );
63
62
  }
64
63
 
65
- // Example 6: Combining Size, Weight, and Color
64
+ // Example 6: Combining Typography, Weight, and Color
66
65
  export function CombinedTextStyles() {
67
66
  return (
68
67
  <View spacing="md">
69
- <Text typography="h5" weight="bold">
68
+ <Text typography="h5" weight="bold" color="primary">
70
69
  Heading 1
71
70
  </Text>
72
- <Text typography="subtitle1" weight="semibold">
71
+ <Text typography="subtitle1" weight="semibold" color="primary">
73
72
  Heading 2
74
73
  </Text>
75
- <Text typography="body1" weight="medium">
74
+ <Text typography="body1" weight="medium" color="secondary">
76
75
  Subheading
77
76
  </Text>
78
- <Text typography="body2" weight="normal">
77
+ <Text typography="body2" weight="normal" color="tertiary">
79
78
  Body text
80
79
  </Text>
81
80
  </View>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@idealyst/mcp-server",
3
- "version": "1.2.101",
3
+ "version": "1.2.103",
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",
@@ -33,7 +33,12 @@
33
33
  "prebuild": "yarn extract-types && yarn validate-examples",
34
34
  "build": "tsup && mkdir -p dist/generated && cp -r src/generated/* dist/generated/",
35
35
  "dev": "tsup --watch",
36
- "start": "node dist/index.js"
36
+ "start": "node dist/index.js",
37
+ "eval": "tsx eval/src/run-eval.ts",
38
+ "eval:all": "tsx eval/src/run-eval.ts --scenarios all",
39
+ "eval:quick": "tsx eval/src/run-eval.ts --scenarios login-screen --verbose",
40
+ "eval:list": "tsx eval/src/run-eval.ts --list",
41
+ "eval:server": "tsx eval/src/server.ts"
37
42
  },
38
43
  "publishConfig": {
39
44
  "access": "public",
@@ -49,15 +54,17 @@
49
54
  "author": "Idealyst",
50
55
  "license": "MIT",
51
56
  "dependencies": {
52
- "@idealyst/components": "^1.2.101",
53
- "@idealyst/navigation": "^1.2.101",
54
- "@idealyst/theme": "^1.2.101",
55
- "@idealyst/tooling": "^1.2.101",
57
+ "@idealyst/components": "^1.2.103",
58
+ "@idealyst/navigation": "^1.2.103",
59
+ "@idealyst/theme": "^1.2.103",
60
+ "@idealyst/tooling": "^1.2.103",
56
61
  "@modelcontextprotocol/sdk": "^1.0.4"
57
62
  },
58
63
  "devDependencies": {
64
+ "@types/better-sqlite3": "^7.6.12",
59
65
  "@types/node": "^20.0.0",
60
66
  "@types/react": "^19.1.0",
67
+ "better-sqlite3": "^11.7.0",
61
68
  "chalk": "^5.3.0",
62
69
  "react": "^19.1.0",
63
70
  "react-native": "^0.80.1",