@svgrid/mcp 2.2.1 → 2.3.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/README.md +128 -120
- package/dist/data.js +714 -379
- package/dist/index.js +1 -1
- package/package.json +22 -4
package/dist/index.js
CHANGED
|
@@ -39,7 +39,7 @@ function errText(message) {
|
|
|
39
39
|
* OFF the code- and file-emitting tools (get_example_source, scaffold_entity)
|
|
40
40
|
* so nothing marketing-flavored ends up welded into generated source.
|
|
41
41
|
*/
|
|
42
|
-
const DOCS_FOOTER = '\n\nSvGrid reference: full docs &
|
|
42
|
+
const DOCS_FOOTER = '\n\nSvGrid reference: full docs & 370+ live demos at https://svgrid.com/docs';
|
|
43
43
|
function withDocs(text) {
|
|
44
44
|
return { content: [{ type: 'text', text: text + DOCS_FOOTER }] };
|
|
45
45
|
}
|
package/package.json
CHANGED
|
@@ -4,14 +4,14 @@
|
|
|
4
4
|
"type": "commercial",
|
|
5
5
|
"url": "https://svgrid.com/pricing"
|
|
6
6
|
},
|
|
7
|
-
"version": "2.
|
|
7
|
+
"version": "2.3.0",
|
|
8
8
|
"description": "Model Context Protocol (MCP) server for SvGrid. Exposes example sources, docs, and API reference to AI assistants.",
|
|
9
9
|
"license": "SEE LICENSE IN LICENSE",
|
|
10
10
|
"author": "jQWidgets <sales@jqwidgets.com>",
|
|
11
|
-
"homepage": "https://
|
|
11
|
+
"homepage": "https://svgrid.com/docs/help/mcp-server/",
|
|
12
12
|
"repository": {
|
|
13
13
|
"type": "git",
|
|
14
|
-
"url": "https://github.com/sv-grid/sv-grid.git",
|
|
14
|
+
"url": "git+https://github.com/sv-grid/sv-grid.git",
|
|
15
15
|
"directory": "packages/mcp"
|
|
16
16
|
},
|
|
17
17
|
"type": "module",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@modelcontextprotocol/sdk": "^1.0.4",
|
|
32
32
|
"zod": "^3.23.8",
|
|
33
|
-
"@svgrid/enterprise": "^2.
|
|
33
|
+
"@svgrid/enterprise": "^2.3.0"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"@types/node": "^22.10.7",
|
|
@@ -39,6 +39,24 @@
|
|
|
39
39
|
"engines": {
|
|
40
40
|
"node": ">=18"
|
|
41
41
|
},
|
|
42
|
+
"keywords": [
|
|
43
|
+
"mcp",
|
|
44
|
+
"model context protocol",
|
|
45
|
+
"model-context-protocol",
|
|
46
|
+
"ai",
|
|
47
|
+
"llm",
|
|
48
|
+
"claude",
|
|
49
|
+
"cursor",
|
|
50
|
+
"zed",
|
|
51
|
+
"svelte",
|
|
52
|
+
"svelte5",
|
|
53
|
+
"data grid",
|
|
54
|
+
"datagrid",
|
|
55
|
+
"svgrid",
|
|
56
|
+
"sv-grid",
|
|
57
|
+
"codegen",
|
|
58
|
+
"agent"
|
|
59
|
+
],
|
|
42
60
|
"scripts": {
|
|
43
61
|
"build:manifests": "node ./scripts/build-manifests.mjs",
|
|
44
62
|
"build:ts": "tsc -p tsconfig.json",
|