@pyreon/mcp 0.5.7 → 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": "@pyreon/mcp",
3
- "version": "0.5.7",
3
+ "version": "0.6.0",
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.5.7",
45
+ "@pyreon/compiler": "0.6.0",
46
46
  "@modelcontextprotocol/sdk": "^1.27.1",
47
47
  "zod": "^3.25.76"
48
48
  },
@@ -173,8 +173,7 @@ h(Fragment, null, h("h1", null, "Title"), h("p", null, "Content"))`,
173
173
 
174
174
  // Provide:
175
175
  const App = () => {
176
- pushContext(new Map([[ThemeContext.id, "dark"]]))
177
- onUnmount(() => popContext())
176
+ provide(ThemeContext, "dark")
178
177
  return <Child />
179
178
  }
180
179