@macroforge/mcp-server 0.1.21 → 0.1.22

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.
@@ -75,8 +75,6 @@ interface MacroDiagnostic {
75
75
  import { expandSync } from "macroforge";
76
76
 
77
77
  const sourceCode = \`
78
- import { Debug } from "macroforge";
79
-
80
78
  /** @derive(Debug) */
81
79
  class User {
82
80
  name: string;
@@ -36,8 +36,6 @@ The simplest way to use Macroforge is with the built-in derive macros. Add a `@d
36
36
 
37
37
  `user.ts`
38
38
  ```typescript
39
- import { Debug, Clone, Eq } from "macroforge";
40
-
41
39
  /** @derive(Debug, Clone, Eq) */
42
40
  class User {
43
41
  name: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@macroforge/mcp-server",
3
- "version": "0.1.21",
3
+ "version": "0.1.22",
4
4
  "description": "MCP server for Macroforge documentation and code analysis",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -27,7 +27,7 @@
27
27
  "typescript": "^5.7.0"
28
28
  },
29
29
  "peerDependencies": {
30
- "macroforge": "^0.1.21"
30
+ "macroforge": "^0.1.22"
31
31
  },
32
32
  "peerDependenciesMeta": {
33
33
  "macroforge": {