@svgrid/mcp 2.6.5 → 2.6.7
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/README.md +67 -1
- package/dist/compile-svelte.d.ts +2 -0
- package/dist/compile-svelte.js +74 -0
- package/dist/data.d.ts +31 -0
- package/dist/data.js +2789 -287
- package/dist/index.d.ts +14 -0
- package/dist/index.js +36 -97
- package/dist/project-tools.d.ts +16 -0
- package/dist/search.d.ts +37 -0
- package/dist/search.js +99 -0
- package/dist/validate.d.ts +101 -0
- package/dist/validate.js +1018 -0
- package/package.json +28 -3
- package/server.json +31 -25
package/package.json
CHANGED
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
"type": "commercial",
|
|
6
6
|
"url": "https://svgrid.com/pricing"
|
|
7
7
|
},
|
|
8
|
-
"version": "2.6.
|
|
9
|
-
"description": "Model Context Protocol
|
|
8
|
+
"version": "2.6.7",
|
|
9
|
+
"description": "Model Context Protocol server for SvGrid, the Svelte 5 data grid: checks the code your AI writes against the real API surface, plus version-pinned docs, API reference and 373 demo sources.",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"author": "jQWidgets <sales@jqwidgets.com>",
|
|
12
12
|
"homepage": "https://svgrid.com/docs/help/mcp-server/",
|
|
@@ -31,6 +31,7 @@
|
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@modelcontextprotocol/sdk": "^1.0.4",
|
|
34
|
+
"svelte": "^5.55.5",
|
|
34
35
|
"zod": "^3.23.8",
|
|
35
36
|
"@svgrid/enterprise": "^2.6.4"
|
|
36
37
|
},
|
|
@@ -57,8 +58,32 @@
|
|
|
57
58
|
"svgrid",
|
|
58
59
|
"sv-grid",
|
|
59
60
|
"codegen",
|
|
60
|
-
"agent"
|
|
61
|
+
"agent",
|
|
62
|
+
"validation",
|
|
63
|
+
"verify",
|
|
64
|
+
"lint",
|
|
65
|
+
"svelte-check",
|
|
66
|
+
"code-verification"
|
|
61
67
|
],
|
|
68
|
+
"exports": {
|
|
69
|
+
".": {
|
|
70
|
+
"types": "./dist/index.d.ts",
|
|
71
|
+
"import": "./dist/index.js"
|
|
72
|
+
},
|
|
73
|
+
"./validate": {
|
|
74
|
+
"types": "./dist/validate.d.ts",
|
|
75
|
+
"import": "./dist/validate.js"
|
|
76
|
+
},
|
|
77
|
+
"./search": {
|
|
78
|
+
"types": "./dist/search.d.ts",
|
|
79
|
+
"import": "./dist/search.js"
|
|
80
|
+
},
|
|
81
|
+
"./data": {
|
|
82
|
+
"types": "./dist/data.d.ts",
|
|
83
|
+
"import": "./dist/data.js"
|
|
84
|
+
},
|
|
85
|
+
"./package.json": "./package.json"
|
|
86
|
+
},
|
|
62
87
|
"scripts": {
|
|
63
88
|
"build:manifests": "node ./scripts/build-manifests.mjs",
|
|
64
89
|
"build:ts": "tsc -p tsconfig.json",
|
package/server.json
CHANGED
|
@@ -1,25 +1,31 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
3
|
-
"name": "com.svgrid/svgrid",
|
|
4
|
-
"title": "SvGrid",
|
|
5
|
-
"description": "
|
|
6
|
-
"version": "2.6.
|
|
7
|
-
"websiteUrl": "https://svgrid.com/docs/help/mcp-server/",
|
|
8
|
-
"repository": {
|
|
9
|
-
"url": "https://github.com/sv-grid/sv-grid",
|
|
10
|
-
"source": "github",
|
|
11
|
-
"subfolder": "packages/mcp"
|
|
12
|
-
},
|
|
13
|
-
"packages": [
|
|
14
|
-
{
|
|
15
|
-
"registryType": "npm",
|
|
16
|
-
"registryBaseUrl": "https://registry.npmjs.org",
|
|
17
|
-
"identifier": "@svgrid/mcp",
|
|
18
|
-
"version": "2.6.
|
|
19
|
-
"runtimeHint": "npx",
|
|
20
|
-
"transport": {
|
|
21
|
-
"type": "stdio"
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
]
|
|
25
|
-
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
3
|
+
"name": "com.svgrid/svgrid",
|
|
4
|
+
"title": "SvGrid",
|
|
5
|
+
"description": "Checks AI-written SvGrid code against the real API, plus version-pinned Svelte 5 grid docs.",
|
|
6
|
+
"version": "2.6.7",
|
|
7
|
+
"websiteUrl": "https://svgrid.com/docs/help/mcp-server/",
|
|
8
|
+
"repository": {
|
|
9
|
+
"url": "https://github.com/sv-grid/sv-grid",
|
|
10
|
+
"source": "github",
|
|
11
|
+
"subfolder": "packages/mcp"
|
|
12
|
+
},
|
|
13
|
+
"packages": [
|
|
14
|
+
{
|
|
15
|
+
"registryType": "npm",
|
|
16
|
+
"registryBaseUrl": "https://registry.npmjs.org",
|
|
17
|
+
"identifier": "@svgrid/mcp",
|
|
18
|
+
"version": "2.6.7",
|
|
19
|
+
"runtimeHint": "npx",
|
|
20
|
+
"transport": {
|
|
21
|
+
"type": "stdio"
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
],
|
|
25
|
+
"remotes": [
|
|
26
|
+
{
|
|
27
|
+
"type": "streamable-http",
|
|
28
|
+
"url": "https://mcp.svgrid.com/mcp"
|
|
29
|
+
}
|
|
30
|
+
]
|
|
31
|
+
}
|