@skeletiq/mcp 0.1.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/LICENSE +21 -0
- package/README.md +118 -0
- package/dist/index.js +1674 -0
- package/package.json +53 -0
package/package.json
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@skeletiq/mcp",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Design in SkeletIQ, build with your coding agent. MCP server for the SkeletIQ architecture platform.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"author": "Sabhahith Works Private Limited",
|
|
7
|
+
"homepage": "https://skeletiq.com",
|
|
8
|
+
"keywords": [
|
|
9
|
+
"mcp",
|
|
10
|
+
"modelcontextprotocol",
|
|
11
|
+
"architecture",
|
|
12
|
+
"system-design",
|
|
13
|
+
"skeletiq"
|
|
14
|
+
],
|
|
15
|
+
"mcpName": "com.skeletiq/mcp",
|
|
16
|
+
"type": "module",
|
|
17
|
+
"bin": {
|
|
18
|
+
"skeletiq-mcp": "dist/index.js"
|
|
19
|
+
},
|
|
20
|
+
"files": [
|
|
21
|
+
"dist",
|
|
22
|
+
"LICENSE",
|
|
23
|
+
"README.md"
|
|
24
|
+
],
|
|
25
|
+
"publishConfig": {
|
|
26
|
+
"access": "public"
|
|
27
|
+
},
|
|
28
|
+
"engines": {
|
|
29
|
+
"node": ">=20"
|
|
30
|
+
},
|
|
31
|
+
"scripts": {
|
|
32
|
+
"prepublishOnly": "npm run build",
|
|
33
|
+
"build": "tsup",
|
|
34
|
+
"typecheck": "tsc --noEmit",
|
|
35
|
+
"lint": "eslint .",
|
|
36
|
+
"test": "vitest run",
|
|
37
|
+
"test:watch": "vitest"
|
|
38
|
+
},
|
|
39
|
+
"dependencies": {
|
|
40
|
+
"@modelcontextprotocol/server": "^2.0.0",
|
|
41
|
+
"zod": "^4.4.3"
|
|
42
|
+
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"@eslint/js": "^9.13.0",
|
|
45
|
+
"@modelcontextprotocol/client": "^2.0.0",
|
|
46
|
+
"@types/node": "^22.10.0",
|
|
47
|
+
"eslint": "^9.13.0",
|
|
48
|
+
"tsup": "^8.5.1",
|
|
49
|
+
"typescript": "~5.6.2",
|
|
50
|
+
"typescript-eslint": "^8.11.0",
|
|
51
|
+
"vitest": "^4.0.18"
|
|
52
|
+
}
|
|
53
|
+
}
|