construct-shader-graph-mcp 0.5.0 → 0.6.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "construct-shader-graph-mcp",
3
- "version": "0.5.0",
3
+ "version": "0.6.0",
4
4
  "description": "Standalone MCP server for Construct Shader Graph",
5
5
  "type": "module",
6
6
  "files": [
@@ -186,8 +186,8 @@ Side-effecting calls:
186
186
  When the model does not know which node type to use:
187
187
 
188
188
  - Prefer `nodeTypes.search(query)` to search by concept.
189
- - Use `nodeTypes.list()` to inspect all available node types.
190
- - Use `nodeTypes.get(typeKey)` to inspect one exact type before creating it.
189
+ - Use `nodeTypes.list()` only for lightweight discovery of available names/categories/tags.
190
+ - Use `nodeTypes.get(typeKey)` to inspect one exact type in full before creating it.
191
191
  - Use `nodes.search(query)` as a convenience alias for node type search.
192
192
  - Use `uniforms.getNodeTypes()` to discover generated uniform-backed node types.
193
193
  - Use `customNodes.list()` to discover reusable custom node definitions already in the project.