@idealyst/mcp-server 1.2.104 → 1.2.105

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/index.cjs CHANGED
@@ -9351,13 +9351,13 @@ var searchComponentsDefinition = {
9351
9351
  };
9352
9352
  var getComponentTypesDefinition = {
9353
9353
  name: "get_component_types",
9354
- description: "Get TypeScript type definitions for a specific component directly from the source. Returns the actual TypeScript interface and/or JSON schema. Supports comma-separated names to batch multiple components in one call (e.g., 'Button,Card,Text').",
9354
+ description: "Get TypeScript type definitions for a specific component directly from the source. Returns the actual TypeScript interface and/or JSON schema.",
9355
9355
  inputSchema: {
9356
9356
  type: "object",
9357
9357
  properties: {
9358
9358
  component: {
9359
9359
  type: "string",
9360
- description: "The name of the component (e.g., 'Button', 'Card', 'Input'). Supports comma-separated names for batch lookup: 'Button,Card,Text,Icon'"
9360
+ description: "The name of the component (e.g., 'Button', 'Card', 'Input')"
9361
9361
  },
9362
9362
  format: {
9363
9363
  type: "string",
@@ -15828,7 +15828,7 @@ This server has tools for every aspect of the framework. **Always look up the AP
15828
15828
  ### Workflow (be efficient \u2014 minimize tool calls)
15829
15829
 
15830
15830
  1. **Start here** \u2014 this intro covers conventions and gotchas
15831
- 2. **Look up components** \u2014 call \`get_component_types\` for EVERY component you plan to use. **Batch them in one call**: \`get_component_types({ component: "Button,Card,Text,View" })\` returns all types at once. (Card has NO compound components \u2014 no Card.Content/Card.Header)
15831
+ 2. **Look up components** \u2014 call \`get_component_types\` for EVERY component you plan to use. Call it for each component you need. (Card has NO compound components \u2014 no Card.Content/Card.Header)
15832
15832
  3. **Look up packages** \u2014 call the dedicated \`get_*_guide\` tool with topic \`api\` for each \`@idealyst/*\` package
15833
15833
  4. **Check recipes** \u2014 call \`search_recipes\` to find ready-made patterns for common screens
15834
15834
  5. **Search icons ONCE** \u2014 combine all needed icon terms into ONE \`search_icons\` call (e.g., \`"home settings check timer calendar"\`)
@@ -15837,7 +15837,7 @@ This server has tools for every aspect of the framework. **Always look up the AP
15837
15837
  ### Component Tools
15838
15838
  - \`list_components\` / \`search_components\` \u2014 Discover available components
15839
15839
  - \`get_component_docs\` \u2014 Component features and best practices
15840
- - \`get_component_types\` \u2014 **TypeScript prop interfaces** (supports batch: \`"Button,Card,Text"\`)
15840
+ - \`get_component_types\` \u2014 **TypeScript prop interfaces** for a component
15841
15841
  - \`get_component_examples_ts\` \u2014 Type-checked code examples
15842
15842
  - \`search_icons\` \u2014 Find Material Design icon names (7,447 available). **Batch your needs**: search once with multiple terms like \`"home settings user check"\` rather than making separate calls per icon
15843
15843