@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/{chunk-ZDB2NURA.js → chunk-NRM3KHHB.js} +5 -5
- package/dist/chunk-NRM3KHHB.js.map +1 -0
- package/dist/index.cjs +4 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/tools/index.cjs +4 -4
- package/dist/tools/index.cjs.map +1 -1
- package/dist/tools/index.js +1 -1
- package/package.json +5 -5
- package/dist/chunk-ZDB2NURA.js.map +0 -1
package/dist/index.js
CHANGED
package/dist/tools/index.cjs
CHANGED
|
@@ -168,13 +168,13 @@ var searchComponentsDefinition = {
|
|
|
168
168
|
};
|
|
169
169
|
var getComponentTypesDefinition = {
|
|
170
170
|
name: "get_component_types",
|
|
171
|
-
description: "Get TypeScript type definitions for a specific component directly from the source. Returns the actual TypeScript interface and/or JSON schema.
|
|
171
|
+
description: "Get TypeScript type definitions for a specific component directly from the source. Returns the actual TypeScript interface and/or JSON schema.",
|
|
172
172
|
inputSchema: {
|
|
173
173
|
type: "object",
|
|
174
174
|
properties: {
|
|
175
175
|
component: {
|
|
176
176
|
type: "string",
|
|
177
|
-
description: "The name of the component (e.g., 'Button', 'Card', 'Input')
|
|
177
|
+
description: "The name of the component (e.g., 'Button', 'Card', 'Input')"
|
|
178
178
|
},
|
|
179
179
|
format: {
|
|
180
180
|
type: "string",
|
|
@@ -11406,7 +11406,7 @@ This server has tools for every aspect of the framework. **Always look up the AP
|
|
|
11406
11406
|
### Workflow (be efficient \u2014 minimize tool calls)
|
|
11407
11407
|
|
|
11408
11408
|
1. **Start here** \u2014 this intro covers conventions and gotchas
|
|
11409
|
-
2. **Look up components** \u2014 call \`get_component_types\` for EVERY component you plan to use.
|
|
11409
|
+
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)
|
|
11410
11410
|
3. **Look up packages** \u2014 call the dedicated \`get_*_guide\` tool with topic \`api\` for each \`@idealyst/*\` package
|
|
11411
11411
|
4. **Check recipes** \u2014 call \`search_recipes\` to find ready-made patterns for common screens
|
|
11412
11412
|
5. **Search icons ONCE** \u2014 combine all needed icon terms into ONE \`search_icons\` call (e.g., \`"home settings check timer calendar"\`)
|
|
@@ -11415,7 +11415,7 @@ This server has tools for every aspect of the framework. **Always look up the AP
|
|
|
11415
11415
|
### Component Tools
|
|
11416
11416
|
- \`list_components\` / \`search_components\` \u2014 Discover available components
|
|
11417
11417
|
- \`get_component_docs\` \u2014 Component features and best practices
|
|
11418
|
-
- \`get_component_types\` \u2014 **TypeScript prop interfaces**
|
|
11418
|
+
- \`get_component_types\` \u2014 **TypeScript prop interfaces** for a component
|
|
11419
11419
|
- \`get_component_examples_ts\` \u2014 Type-checked code examples
|
|
11420
11420
|
- \`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
|
|
11421
11421
|
|