@pyreon/mcp 0.7.1 → 0.7.2

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": "@pyreon/mcp",
3
- "version": "0.7.1",
3
+ "version": "0.7.2",
4
4
  "description": "MCP server for Pyreon — AI-powered framework assistance",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -42,7 +42,7 @@
42
42
  "prepublishOnly": "bun run build"
43
43
  },
44
44
  "dependencies": {
45
- "@pyreon/compiler": "0.7.1",
45
+ "@pyreon/compiler": "0.7.2",
46
46
  "@modelcontextprotocol/sdk": "^1.27.1",
47
47
  "zod": "^3.25.76"
48
48
  },
@@ -33,7 +33,7 @@ count.update(n => n + 1) // 6
33
33
  // Read without subscribing:
34
34
  count.peek() // 6`,
35
35
  notes:
36
- "Signals are callable functions, NOT .value getters. Components run once — signal reads in JSX auto-subscribe.",
36
+ "Signals are callable functions, NOT .value getters. Components run once — signal reads in JSX auto-subscribe. Optional { name } for debugging — auto-injected by @pyreon/vite-plugin in dev mode.",
37
37
  mistakes: `- \`count.value\` → Use \`count()\` to read
38
38
  - \`{count}\` in JSX → Use \`{count()}\` to read (or let the compiler wrap it)
39
39
  - \`const [val, setVal] = signal(0)\` → Not destructurable. Use \`const val = signal(0)\``,