@loggi87/mcp-custom-xs 1.0.3 → 1.0.6
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/index.js +2 -1
- package/package.json +5 -2
package/index.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
1
2
|
// index.js - MCP Server (@loggi87/mcp-custom-xs)
|
|
2
3
|
const { McpServer } = require("@modelcontextprotocol/sdk/server/mcp.js");
|
|
3
4
|
const { StdioServerTransport } = require("@modelcontextprotocol/sdk/server/stdio.js");
|
|
@@ -111,7 +112,7 @@ function getFormattedRules() {
|
|
|
111
112
|
}
|
|
112
113
|
|
|
113
114
|
// Servidor MCP
|
|
114
|
-
const server = new McpServer({ name: "mcp-custom-xs", version: "1.0.
|
|
115
|
+
const server = new McpServer({ name: "mcp-custom-xs", version: "1.0.5" });
|
|
115
116
|
|
|
116
117
|
server.tool(
|
|
117
118
|
"validate_file",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@loggi87/mcp-custom-xs",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -11,8 +11,11 @@
|
|
|
11
11
|
"rules",
|
|
12
12
|
"atomic-design"
|
|
13
13
|
],
|
|
14
|
+
"bin": {
|
|
15
|
+
"mcp-custom-xs": "./index.js"
|
|
16
|
+
},
|
|
14
17
|
"dependencies": {
|
|
15
18
|
"@modelcontextprotocol/sdk": "^1.28.0",
|
|
16
|
-
"zod": "^
|
|
19
|
+
"zod": "^3.22.0"
|
|
17
20
|
}
|
|
18
21
|
}
|