@macroforge/mcp-server 0.1.17 → 0.1.20
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/tools/index.d.ts.map +1 -1
- package/dist/tools/index.js +108 -0
- package/dist/tools/index.js.map +1 -1
- package/docs/builtin-macros/clone.md +18 -77
- package/docs/builtin-macros/debug.md +19 -118
- package/docs/builtin-macros/default.md +13 -98
- package/docs/builtin-macros/deserialize.md +38 -383
- package/docs/builtin-macros/hash.md +16 -98
- package/docs/builtin-macros/macros-overview.md +33 -9
- package/docs/builtin-macros/ord.md +16 -115
- package/docs/builtin-macros/partial-eq.md +26 -128
- package/docs/builtin-macros/partial-ord.md +19 -99
- package/docs/builtin-macros/serialize.md +28 -126
- package/docs/concepts/architecture.md +27 -58
- package/docs/concepts/derive-system.md +17 -45
- package/docs/concepts/how-macros-work.md +11 -50
- package/docs/custom-macros/custom-overview.md +4 -5
- package/docs/custom-macros/rust-setup.md +3 -4
- package/docs/custom-macros/ts-macro-derive.md +4 -5
- package/docs/custom-macros/ts-quote.md +2 -2
- package/docs/getting-started/first-macro.md +6 -72
- package/docs/getting-started/installation.md +2 -2
- package/docs/integration/integration-overview.md +21 -14
- package/docs/integration/mcp-server.md +84 -0
- package/docs/integration/svelte-preprocessor.md +152 -0
- package/docs/language-servers/svelte.md +80 -0
- package/docs/language-servers/zed.md +84 -0
- package/docs/roadmap/roadmap.md +131 -0
- package/docs/sections.json +29 -5
- package/package.json +4 -3
package/docs/sections.json
CHANGED
|
@@ -137,7 +137,7 @@
|
|
|
137
137
|
},
|
|
138
138
|
{
|
|
139
139
|
"id": "ts-macro-derive",
|
|
140
|
-
"title": "ts_macro_derive",
|
|
140
|
+
"title": "#[ts_macro_derive]",
|
|
141
141
|
"category": "custom-macros",
|
|
142
142
|
"category_title": "Custom Macros",
|
|
143
143
|
"path": "custom-macros/ts-macro-derive.md",
|
|
@@ -183,6 +183,22 @@
|
|
|
183
183
|
"path": "integration/vite-plugin.md",
|
|
184
184
|
"use_cases": "vite, build, bundler, react, svelte, sveltekit"
|
|
185
185
|
},
|
|
186
|
+
{
|
|
187
|
+
"id": "svelte-preprocessor",
|
|
188
|
+
"title": "Svelte Preprocessor",
|
|
189
|
+
"category": "integration",
|
|
190
|
+
"category_title": "Integration",
|
|
191
|
+
"path": "integration/svelte-preprocessor.md",
|
|
192
|
+
"use_cases": "svelte, preprocessor, svelte components, .svelte files, sveltekit"
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
"id": "mcp-server",
|
|
196
|
+
"title": "MCP Server",
|
|
197
|
+
"category": "integration",
|
|
198
|
+
"category_title": "Integration",
|
|
199
|
+
"path": "integration/mcp-server.md",
|
|
200
|
+
"use_cases": "mcp, ai, claude, llm, model context protocol, assistant"
|
|
201
|
+
},
|
|
186
202
|
{
|
|
187
203
|
"id": "configuration",
|
|
188
204
|
"title": "Configuration",
|
|
@@ -200,19 +216,19 @@
|
|
|
200
216
|
"use_cases": "lsp, language server, editor support"
|
|
201
217
|
},
|
|
202
218
|
{
|
|
203
|
-
"id": "svelte
|
|
219
|
+
"id": "svelte",
|
|
204
220
|
"title": "Svelte",
|
|
205
221
|
"category": "language-servers",
|
|
206
222
|
"category_title": "Language Servers",
|
|
207
|
-
"path": "language-servers/svelte
|
|
223
|
+
"path": "language-servers/svelte.md",
|
|
208
224
|
"use_cases": "svelte, svelte language server, .svelte files"
|
|
209
225
|
},
|
|
210
226
|
{
|
|
211
|
-
"id": "zed
|
|
227
|
+
"id": "zed",
|
|
212
228
|
"title": "Zed Extensions",
|
|
213
229
|
"category": "language-servers",
|
|
214
230
|
"category_title": "Language Servers",
|
|
215
|
-
"path": "language-servers/zed
|
|
231
|
+
"path": "language-servers/zed.md",
|
|
216
232
|
"use_cases": "zed, zed editor, extension"
|
|
217
233
|
},
|
|
218
234
|
{
|
|
@@ -254,5 +270,13 @@
|
|
|
254
270
|
"category_title": "API Reference",
|
|
255
271
|
"path": "api/position-mapper.md",
|
|
256
272
|
"use_cases": "PositionMapper, source map, diagnostics, position"
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
"id": "roadmap",
|
|
276
|
+
"title": "Roadmap",
|
|
277
|
+
"category": "roadmap",
|
|
278
|
+
"category_title": "Roadmap",
|
|
279
|
+
"path": "roadmap/roadmap.md",
|
|
280
|
+
"use_cases": "roadmap, future, planned features, upcoming"
|
|
257
281
|
}
|
|
258
282
|
]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@macroforge/mcp-server",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.20",
|
|
4
4
|
"description": "MCP server for Macroforge documentation and code analysis",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -16,7 +16,8 @@
|
|
|
16
16
|
"build": "tsc && chmod +x dist/index.js",
|
|
17
17
|
"build:docs": "node scripts/extract-docs.cjs",
|
|
18
18
|
"dev": "npx @modelcontextprotocol/inspector dist/index.js",
|
|
19
|
-
"start": "node dist/index.js"
|
|
19
|
+
"start": "node dist/index.js",
|
|
20
|
+
"test": "node --test tests/**/*.test.js"
|
|
20
21
|
},
|
|
21
22
|
"dependencies": {
|
|
22
23
|
"@modelcontextprotocol/sdk": "^1.11.1"
|
|
@@ -26,7 +27,7 @@
|
|
|
26
27
|
"typescript": "^5.7.0"
|
|
27
28
|
},
|
|
28
29
|
"peerDependencies": {
|
|
29
|
-
"macroforge": "^0.1.
|
|
30
|
+
"macroforge": "^0.1.20"
|
|
30
31
|
},
|
|
31
32
|
"peerDependenciesMeta": {
|
|
32
33
|
"macroforge": {
|