@regle/mcp-server 1.17.0 → 1.17.1
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 +0 -3
- package/dist/regle-mcp-server.js +2 -2
- package/package.json +39 -39
package/README.md
CHANGED
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
MCP (Model Context Protocol) Server for [Regle](https://reglejs.dev) - providing AI-powered assistance for Vue form validation.
|
|
4
4
|
|
|
5
|
-
|
|
6
5
|
## Usage with AI Assistants
|
|
7
6
|
|
|
8
7
|
### Claude Desktop
|
|
@@ -37,7 +36,6 @@ Or add to your MCP settings:
|
|
|
37
36
|
}
|
|
38
37
|
```
|
|
39
38
|
|
|
40
|
-
|
|
41
39
|
## Development
|
|
42
40
|
|
|
43
41
|
```bash
|
|
@@ -57,4 +55,3 @@ pnpm typecheck
|
|
|
57
55
|
## License
|
|
58
56
|
|
|
59
57
|
MIT
|
|
60
|
-
|
package/dist/regle-mcp-server.js
CHANGED
|
@@ -244,7 +244,7 @@ var docs_data_default = {
|
|
|
244
244
|
"title": "Regle MCP server",
|
|
245
245
|
"category": "integrations",
|
|
246
246
|
"path": "integrations/mcp-server.md",
|
|
247
|
-
"content": "# MCP Server\n\nRegle offers an MCP server that can be used to get documentation and autocomplete in your favorite AI assistant editor.\n\nThe MCP server provides the following features:\n\n- Create form validation rules\n- Search documentation\n- Get precise information on any rule\n- Create custom rules\n- API information on every Regle helper\n\n## Cursor\n\n<a href=\"https://cursor.com/en-US/install-mcp?name=regle&config=eyJjb21tYW5kIjoibnB4IEByZWdsZS9tY3Atc2VydmVyIn0%3D\">\n <div class=\"light-only\">\n <img src=\"https://cursor.com/deeplink/mcp-install-dark.svg\" alt=\"Install MCP Server\" />\n </div>\n <div class=\"dark-only\">\n <img src=\"https://cursor.com/deeplink/mcp-install-light.svg\" alt=\"Install MCP Server\" />\n </div>\n</a>\n\nOr add to your `.cursor/mcp.json`\n```json\n{\n \"mcpServers\": {\n \"regle\": {\n \"command\": \"npx\",\n \"args\": [\"@regle/mcp-server\"]\n }\n }\n}\n```\n\n## Claude
|
|
247
|
+
"content": "# MCP Server\n\nRegle offers an MCP server that can be used to get documentation and autocomplete in your favorite AI assistant editor.\n\nThe MCP server provides the following features:\n\n- Create form validation rules\n- Search documentation\n- Get precise information on any rule\n- Create custom rules\n- API information on every Regle helper\n\n## Cursor\n\n<a href=\"https://cursor.com/en-US/install-mcp?name=regle&config=eyJjb21tYW5kIjoibnB4IEByZWdsZS9tY3Atc2VydmVyIn0%3D\">\n <div class=\"light-only\">\n <img src=\"https://cursor.com/deeplink/mcp-install-dark.svg\" alt=\"Install MCP Server\" />\n </div>\n <div class=\"dark-only\">\n <img src=\"https://cursor.com/deeplink/mcp-install-light.svg\" alt=\"Install MCP Server\" />\n </div>\n</a>\n\nOr add to your `.cursor/mcp.json`\n```json\n{\n \"mcpServers\": {\n \"regle\": {\n \"command\": \"npx\",\n \"args\": [\"@regle/mcp-server\"]\n }\n }\n}\n```\n\n## Claude Code\n\nFor Claude Code, run the following command:\n\n```bash\nclaude mcp add regle --scope project '{\"command\":\"npx\",\"args\":[\"-y\",\"@regle/mcp-server\"]}'\n```"
|
|
248
248
|
},
|
|
249
249
|
{
|
|
250
250
|
"id": "integrations-nuxt",
|
|
@@ -1814,7 +1814,7 @@ function searchApi(query) {
|
|
|
1814
1814
|
return results;
|
|
1815
1815
|
}
|
|
1816
1816
|
|
|
1817
|
-
var version = "1.17.
|
|
1817
|
+
var version = "1.17.1";
|
|
1818
1818
|
|
|
1819
1819
|
let posthogClient = null;
|
|
1820
1820
|
posthogClient = new PostHog("phc_kqgJoylCpKkGkkRGxb4MyN2mViehoQcUFEGwVkk4l8E", {
|
package/package.json
CHANGED
|
@@ -1,20 +1,38 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@regle/mcp-server",
|
|
3
|
-
"version": "1.17.
|
|
3
|
+
"version": "1.17.1",
|
|
4
4
|
"description": "MCP Server for Regle",
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
"
|
|
5
|
+
"keywords": [
|
|
6
|
+
"ai",
|
|
7
|
+
"forms",
|
|
8
|
+
"mcp",
|
|
9
|
+
"model-context-protocol",
|
|
10
|
+
"regle",
|
|
11
|
+
"validation",
|
|
12
|
+
"vue"
|
|
13
|
+
],
|
|
14
|
+
"homepage": "https://reglejs.dev/",
|
|
15
|
+
"license": "MIT",
|
|
16
|
+
"author": {
|
|
17
|
+
"name": "Victor Garcia",
|
|
18
|
+
"url": "https://github.com/victorgarciaesgi"
|
|
9
19
|
},
|
|
10
|
-
"
|
|
11
|
-
"
|
|
12
|
-
"
|
|
13
|
-
"tsdown": "0.18.3",
|
|
14
|
-
"tsx": "4.21.0",
|
|
15
|
-
"typescript": "5.9.3"
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "git+https://github.com/victorgarciaesgi/regle.git"
|
|
16
23
|
},
|
|
24
|
+
"bin": {
|
|
25
|
+
"regle-mcp-server": "./dist/regle-mcp-server.js"
|
|
26
|
+
},
|
|
27
|
+
"files": [
|
|
28
|
+
"dist",
|
|
29
|
+
"LICENSE",
|
|
30
|
+
"README.md"
|
|
31
|
+
],
|
|
17
32
|
"type": "module",
|
|
33
|
+
"main": "./dist/regle-mcp-server.js",
|
|
34
|
+
"module": "./dist/regle-mcp-server.js",
|
|
35
|
+
"types": "./dist/regle-mcp-server.d.ts",
|
|
18
36
|
"exports": {
|
|
19
37
|
".": {
|
|
20
38
|
"types": "./dist/regle-mcp-server.d.ts",
|
|
@@ -23,39 +41,21 @@
|
|
|
23
41
|
"./package.json": "./package.json",
|
|
24
42
|
"./dist/*": "./dist/*"
|
|
25
43
|
},
|
|
26
|
-
"main": "./dist/regle-mcp-server.js",
|
|
27
|
-
"module": "./dist/regle-mcp-server.js",
|
|
28
|
-
"types": "./dist/regle-mcp-server.d.ts",
|
|
29
|
-
"bin": {
|
|
30
|
-
"regle-mcp-server": "./dist/regle-mcp-server.js"
|
|
31
|
-
},
|
|
32
|
-
"files": [
|
|
33
|
-
"dist",
|
|
34
|
-
"LICENSE",
|
|
35
|
-
"README.md"
|
|
36
|
-
],
|
|
37
44
|
"publishConfig": {
|
|
38
45
|
"access": "public"
|
|
39
46
|
},
|
|
40
|
-
"
|
|
41
|
-
|
|
42
|
-
"
|
|
43
|
-
"
|
|
47
|
+
"dependencies": {
|
|
48
|
+
"@modelcontextprotocol/sdk": "1.25.3",
|
|
49
|
+
"posthog-node": "5.24.1",
|
|
50
|
+
"zod": "4.3.5"
|
|
44
51
|
},
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"
|
|
52
|
+
"devDependencies": {
|
|
53
|
+
"@types/node": "22.19.7",
|
|
54
|
+
"dotenv": "17.2.3",
|
|
55
|
+
"tsdown": "0.18.4",
|
|
56
|
+
"tsx": "4.21.0",
|
|
57
|
+
"typescript": "5.9.3"
|
|
48
58
|
},
|
|
49
|
-
"keywords": [
|
|
50
|
-
"regle",
|
|
51
|
-
"mcp",
|
|
52
|
-
"model-context-protocol",
|
|
53
|
-
"ai",
|
|
54
|
-
"vue",
|
|
55
|
-
"validation",
|
|
56
|
-
"forms"
|
|
57
|
-
],
|
|
58
|
-
"license": "MIT",
|
|
59
59
|
"scripts": {
|
|
60
60
|
"typecheck": "tsc --noEmit",
|
|
61
61
|
"build:docs": "tsx scripts/build-docs-data.ts",
|