@gera-services/mcp-gera-skills 0.1.0 → 1.0.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 +1 -1
- package/README.md +90 -19
- package/bin/cli.js +11 -1
- package/dist/data/skill-packs.json +2687 -0
- package/dist/data.d.ts +39 -0
- package/dist/data.js +80 -0
- package/dist/index.d.ts +12 -0
- package/dist/index.js +12 -28
- package/dist/server.d.ts +22 -0
- package/dist/server.js +223 -167
- package/package.json +23 -26
- package/server.json +8 -19
package/package.json
CHANGED
|
@@ -1,29 +1,31 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gera-services/mcp-gera-skills",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "MCP server
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "GeraSkills MCP server — search, inspect, and recommend AI skill packs from the GeraSkills marketplace. Deterministic, offline, no auth. A Gera Systems product.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"main": "dist/server.js",
|
|
8
|
+
"types": "dist/server.d.ts",
|
|
5
9
|
"mcpName": "io.github.geraservicesuk/mcp-gera-skills",
|
|
6
|
-
"main": "dist/index.js",
|
|
7
|
-
"types": "dist/index.d.ts",
|
|
8
10
|
"bin": {
|
|
9
11
|
"mcp-gera-skills": "bin/cli.js"
|
|
10
12
|
},
|
|
11
13
|
"files": [
|
|
12
14
|
"dist",
|
|
13
15
|
"bin",
|
|
16
|
+
"server.json",
|
|
14
17
|
"README.md",
|
|
15
|
-
"LICENSE"
|
|
16
|
-
"server.json"
|
|
18
|
+
"LICENSE"
|
|
17
19
|
],
|
|
18
20
|
"publishConfig": {
|
|
19
21
|
"access": "public"
|
|
20
22
|
},
|
|
21
23
|
"scripts": {
|
|
22
|
-
"
|
|
24
|
+
"copy-data": "node -e \"const fs=require('fs');fs.mkdirSync('dist/data',{recursive:true});fs.copyFileSync('src/data/skill-packs.json','dist/data/skill-packs.json')\"",
|
|
25
|
+
"build": "tsc --noCheck && npm run copy-data",
|
|
23
26
|
"type-check": "tsc --noEmit",
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"prepublishOnly": "npm run build"
|
|
27
|
+
"start": "node bin/cli.js",
|
|
28
|
+
"smoke": "node scripts/smoke.mjs"
|
|
27
29
|
},
|
|
28
30
|
"keywords": [
|
|
29
31
|
"mcp",
|
|
@@ -31,27 +33,20 @@
|
|
|
31
33
|
"ai",
|
|
32
34
|
"gera",
|
|
33
35
|
"gera-skills",
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
+
"skills",
|
|
37
|
+
"marketplace",
|
|
36
38
|
"ai-agent",
|
|
37
|
-
"
|
|
39
|
+
"skill-packs"
|
|
38
40
|
],
|
|
39
|
-
"author":
|
|
40
|
-
|
|
41
|
-
"email": "engineering@gera.services",
|
|
42
|
-
"url": "https://gera.services"
|
|
43
|
-
},
|
|
44
|
-
"license": "MIT",
|
|
41
|
+
"author": "Gera Systems Ltd",
|
|
42
|
+
"homepage": "https://skills.gera.services",
|
|
45
43
|
"repository": {
|
|
46
44
|
"type": "git",
|
|
47
|
-
"url": "https://github.com/geraservicesuk/
|
|
45
|
+
"url": "https://github.com/geraservicesuk/globetura.git",
|
|
46
|
+
"directory": "packages/mcp-gera-skills"
|
|
48
47
|
},
|
|
49
|
-
"homepage": "https://geraskills.com",
|
|
50
48
|
"bugs": {
|
|
51
|
-
"url": "https://github.com/geraservicesuk/
|
|
52
|
-
},
|
|
53
|
-
"engines": {
|
|
54
|
-
"node": ">=18.0.0"
|
|
49
|
+
"url": "https://github.com/geraservicesuk/globetura/issues"
|
|
55
50
|
},
|
|
56
51
|
"dependencies": {
|
|
57
52
|
"@modelcontextprotocol/sdk": "^1.12.0",
|
|
@@ -59,7 +54,9 @@
|
|
|
59
54
|
},
|
|
60
55
|
"devDependencies": {
|
|
61
56
|
"@types/node": "^20.12.0",
|
|
62
|
-
"esbuild": "^0.28.0",
|
|
63
57
|
"typescript": "^5.4.0"
|
|
58
|
+
},
|
|
59
|
+
"engines": {
|
|
60
|
+
"node": ">=20"
|
|
64
61
|
}
|
|
65
62
|
}
|
package/server.json
CHANGED
|
@@ -1,33 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
3
3
|
"name": "io.github.geraservicesuk/mcp-gera-skills",
|
|
4
|
-
"description": "
|
|
4
|
+
"description": "Search, inspect and recommend AI skill packs from the GeraSkills marketplace. Offline, no auth.",
|
|
5
|
+
"version": "1.0.0",
|
|
5
6
|
"repository": {
|
|
6
|
-
"url": "https://github.com/geraservicesuk/
|
|
7
|
-
"source": "github"
|
|
7
|
+
"url": "https://github.com/geraservicesuk/globetura",
|
|
8
|
+
"source": "github",
|
|
9
|
+
"subfolder": "packages/mcp-gera-skills"
|
|
8
10
|
},
|
|
9
|
-
"
|
|
11
|
+
"websiteUrl": "https://skills.gera.services",
|
|
10
12
|
"packages": [
|
|
11
13
|
{
|
|
12
14
|
"registryType": "npm",
|
|
13
15
|
"identifier": "@gera-services/mcp-gera-skills",
|
|
14
|
-
"version": "
|
|
16
|
+
"version": "1.0.0",
|
|
15
17
|
"transport": {
|
|
16
18
|
"type": "stdio"
|
|
17
|
-
}
|
|
18
|
-
"environmentVariables": [
|
|
19
|
-
{
|
|
20
|
-
"name": "GERASKILLS_API_URL",
|
|
21
|
-
"description": "Base URL of the GeraSkills backend. Defaults to https://geraskills.com/backend.",
|
|
22
|
-
"isRequired": false
|
|
23
|
-
},
|
|
24
|
-
{
|
|
25
|
-
"name": "GERA_USER_TOKEN",
|
|
26
|
-
"description": "JWT for the operator on whose behalf the agent acts. Required for install_skill.",
|
|
27
|
-
"isRequired": false,
|
|
28
|
-
"isSecret": true
|
|
29
|
-
}
|
|
30
|
-
]
|
|
19
|
+
}
|
|
31
20
|
}
|
|
32
21
|
]
|
|
33
22
|
}
|