@atlashub/smartstack-mcp 1.1.0 → 1.2.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 +96 -140
- package/dist/index.js +117 -79
- package/dist/index.js.map +1 -1
- package/package.json +65 -65
package/package.json
CHANGED
|
@@ -1,65 +1,65 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@atlashub/smartstack-mcp",
|
|
3
|
-
"version": "1.1
|
|
4
|
-
"description": "MCP Server for SmartStack/AtlasHub - Conventions validation, migrations analysis, scaffolding",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"main": "./dist/index.js",
|
|
7
|
-
"bin": {
|
|
8
|
-
"smartstack-mcp": "./dist/index.js"
|
|
9
|
-
},
|
|
10
|
-
"files": [
|
|
11
|
-
"dist",
|
|
12
|
-
"config",
|
|
13
|
-
"templates",
|
|
14
|
-
"README.md"
|
|
15
|
-
],
|
|
16
|
-
"scripts": {
|
|
17
|
-
"build": "tsup",
|
|
18
|
-
"dev": "tsup --watch",
|
|
19
|
-
"start": "node dist/index.js",
|
|
20
|
-
"inspect": "npx @modelcontextprotocol/inspector node dist/index.js",
|
|
21
|
-
"lint": "eslint src/",
|
|
22
|
-
"typecheck": "tsc --noEmit",
|
|
23
|
-
"prepublishOnly": "npm run build"
|
|
24
|
-
},
|
|
25
|
-
"keywords": [
|
|
26
|
-
"mcp",
|
|
27
|
-
"smartstack",
|
|
28
|
-
"atlashub",
|
|
29
|
-
"claude",
|
|
30
|
-
"efcore",
|
|
31
|
-
"dotnet",
|
|
32
|
-
"conventions"
|
|
33
|
-
],
|
|
34
|
-
"author": "AtlasHub <info@atlashub.ch>",
|
|
35
|
-
"license": "MIT",
|
|
36
|
-
"repository": {
|
|
37
|
-
"type": "git",
|
|
38
|
-
"url": "https://dev.azure.com/AtlasHub/SmartStack/_git/SmartStack.mcp"
|
|
39
|
-
},
|
|
40
|
-
"homepage": "https://atlashub.ch",
|
|
41
|
-
"bugs": {
|
|
42
|
-
"url": "https://dev.azure.com/AtlasHub/SmartStack/_workitems"
|
|
43
|
-
},
|
|
44
|
-
"publishConfig": {
|
|
45
|
-
"access": "public"
|
|
46
|
-
},
|
|
47
|
-
"dependencies": {
|
|
48
|
-
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
49
|
-
"zod": "^3.25.0",
|
|
50
|
-
"axios": "^1.7.0",
|
|
51
|
-
"handlebars": "^4.7.8",
|
|
52
|
-
"glob": "^11.0.0",
|
|
53
|
-
"fs-extra": "^11.2.0"
|
|
54
|
-
},
|
|
55
|
-
"devDependencies": {
|
|
56
|
-
"@modelcontextprotocol/inspector": "^0.3.0",
|
|
57
|
-
"@types/fs-extra": "^11.0.4",
|
|
58
|
-
"@types/node": "^22.0.0",
|
|
59
|
-
"tsup": "^8.3.0",
|
|
60
|
-
"typescript": "^5.6.0"
|
|
61
|
-
},
|
|
62
|
-
"engines": {
|
|
63
|
-
"node": ">=18.0.0"
|
|
64
|
-
}
|
|
65
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlashub/smartstack-mcp",
|
|
3
|
+
"version": "1.2.1",
|
|
4
|
+
"description": "MCP Server for SmartStack/AtlasHub - Conventions validation, migrations analysis, scaffolding",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"bin": {
|
|
8
|
+
"smartstack-mcp": "./dist/index.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"dist",
|
|
12
|
+
"config",
|
|
13
|
+
"templates",
|
|
14
|
+
"README.md"
|
|
15
|
+
],
|
|
16
|
+
"scripts": {
|
|
17
|
+
"build": "tsup",
|
|
18
|
+
"dev": "tsup --watch",
|
|
19
|
+
"start": "node dist/index.js",
|
|
20
|
+
"inspect": "npx @modelcontextprotocol/inspector node dist/index.js",
|
|
21
|
+
"lint": "eslint src/",
|
|
22
|
+
"typecheck": "tsc --noEmit",
|
|
23
|
+
"prepublishOnly": "npm run build"
|
|
24
|
+
},
|
|
25
|
+
"keywords": [
|
|
26
|
+
"mcp",
|
|
27
|
+
"smartstack",
|
|
28
|
+
"atlashub",
|
|
29
|
+
"claude",
|
|
30
|
+
"efcore",
|
|
31
|
+
"dotnet",
|
|
32
|
+
"conventions"
|
|
33
|
+
],
|
|
34
|
+
"author": "AtlasHub <info@atlashub.ch>",
|
|
35
|
+
"license": "MIT",
|
|
36
|
+
"repository": {
|
|
37
|
+
"type": "git",
|
|
38
|
+
"url": "https://dev.azure.com/AtlasHub/SmartStack/_git/SmartStack.mcp"
|
|
39
|
+
},
|
|
40
|
+
"homepage": "https://atlashub.ch",
|
|
41
|
+
"bugs": {
|
|
42
|
+
"url": "https://dev.azure.com/AtlasHub/SmartStack/_workitems"
|
|
43
|
+
},
|
|
44
|
+
"publishConfig": {
|
|
45
|
+
"access": "public"
|
|
46
|
+
},
|
|
47
|
+
"dependencies": {
|
|
48
|
+
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
49
|
+
"zod": "^3.25.0",
|
|
50
|
+
"axios": "^1.7.0",
|
|
51
|
+
"handlebars": "^4.7.8",
|
|
52
|
+
"glob": "^11.0.0",
|
|
53
|
+
"fs-extra": "^11.2.0"
|
|
54
|
+
},
|
|
55
|
+
"devDependencies": {
|
|
56
|
+
"@modelcontextprotocol/inspector": "^0.3.0",
|
|
57
|
+
"@types/fs-extra": "^11.0.4",
|
|
58
|
+
"@types/node": "^22.0.0",
|
|
59
|
+
"tsup": "^8.3.0",
|
|
60
|
+
"typescript": "^5.6.0"
|
|
61
|
+
},
|
|
62
|
+
"engines": {
|
|
63
|
+
"node": ">=18.0.0"
|
|
64
|
+
}
|
|
65
|
+
}
|