@skillsmith/mcp-server 0.4.5 → 0.4.7

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.
Files changed (43) hide show
  1. package/CHANGELOG.md +24 -0
  2. package/README.md +69 -31
  3. package/dist/.tsbuildinfo +1 -1
  4. package/dist/src/index.js +4 -2
  5. package/dist/src/index.js.map +1 -1
  6. package/dist/src/tool-dispatch.d.ts.map +1 -1
  7. package/dist/src/tool-dispatch.js +3 -0
  8. package/dist/src/tool-dispatch.js.map +1 -1
  9. package/dist/src/tools/index.d.ts +2 -0
  10. package/dist/src/tools/index.d.ts.map +1 -1
  11. package/dist/src/tools/index.js +2 -0
  12. package/dist/src/tools/index.js.map +1 -1
  13. package/dist/src/tools/install.d.ts +10 -0
  14. package/dist/src/tools/install.d.ts.map +1 -1
  15. package/dist/src/tools/install.helpers.d.ts.map +1 -1
  16. package/dist/src/tools/install.helpers.js +2 -0
  17. package/dist/src/tools/install.helpers.js.map +1 -1
  18. package/dist/src/tools/install.js +64 -370
  19. package/dist/src/tools/install.js.map +1 -1
  20. package/dist/src/tools/install.types.d.ts +3 -1
  21. package/dist/src/tools/install.types.d.ts.map +1 -1
  22. package/dist/src/tools/recommend.types.d.ts +3 -3
  23. package/dist/src/tools/skill-diff.d.ts +2 -2
  24. package/dist/src/tools/skill-rescan.d.ts +107 -0
  25. package/dist/src/tools/skill-rescan.d.ts.map +1 -0
  26. package/dist/src/tools/skill-rescan.js +194 -0
  27. package/dist/src/tools/skill-rescan.js.map +1 -0
  28. package/dist/src/tools/skill-rescan.test.d.ts +6 -0
  29. package/dist/src/tools/skill-rescan.test.d.ts.map +1 -0
  30. package/dist/src/tools/skill-rescan.test.js +238 -0
  31. package/dist/src/tools/skill-rescan.test.js.map +1 -0
  32. package/dist/src/tools/suggest.d.ts +4 -4
  33. package/dist/src/tools/uninstall.d.ts +9 -59
  34. package/dist/src/tools/uninstall.d.ts.map +1 -1
  35. package/dist/src/tools/uninstall.js +29 -199
  36. package/dist/src/tools/uninstall.js.map +1 -1
  37. package/dist/tests/integration/install.integration.test.js +16 -1
  38. package/dist/tests/integration/install.integration.test.js.map +1 -1
  39. package/dist/vitest.config.d.ts.map +1 -1
  40. package/dist/vitest.config.js +14 -4
  41. package/dist/vitest.config.js.map +1 -1
  42. package/package.json +7 -4
  43. package/server.json +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skillsmith/mcp-server",
3
- "version": "0.4.5",
3
+ "version": "0.4.7",
4
4
  "mcpName": "io.github.smith-horn/skillsmith",
5
5
  "description": "MCP server for Skillsmith skill discovery",
6
6
  "type": "module",
@@ -16,12 +16,13 @@
16
16
  "dev": "tsx watch src/index.ts",
17
17
  "start": "node dist/src/index.js",
18
18
  "test": "vitest run",
19
+ "test:coverage": "vitest run --coverage",
19
20
  "test:watch": "vitest",
20
21
  "test:integration": "vitest run --config vitest.config.integration.ts"
21
22
  },
22
23
  "dependencies": {
23
- "@modelcontextprotocol/sdk": "1.26.0",
24
- "@skillsmith/core": "^0.4.16",
24
+ "@modelcontextprotocol/sdk": "^1.27.1",
25
+ "@skillsmith/core": "^0.4.17",
25
26
  "esbuild": "0.27.2"
26
27
  },
27
28
  "devDependencies": {
@@ -40,7 +41,8 @@
40
41
  "files": [
41
42
  "dist",
42
43
  "src/assets",
43
- "server.json"
44
+ "server.json",
45
+ "CHANGELOG.md"
44
46
  ],
45
47
  "license": "Elastic-2.0",
46
48
  "repository": {
@@ -53,6 +55,7 @@
53
55
  "url": "https://github.com/smith-horn/skillsmith/issues"
54
56
  },
55
57
  "keywords": [
58
+ "skillsmith",
56
59
  "ai",
57
60
  "skills",
58
61
  "mcp",
package/server.json CHANGED
@@ -8,7 +8,7 @@
8
8
  "url": "https://github.com/smith-horn/skillsmith",
9
9
  "source": "github"
10
10
  },
11
- "version": "0.4.5",
11
+ "version": "0.4.7",
12
12
  "_meta": {
13
13
  "io.skillsmith/categories": ["developer-tools", "ai-agents", "skill-management"],
14
14
  "io.skillsmith/keywords": [
@@ -23,7 +23,7 @@
23
23
  {
24
24
  "registryType": "npm",
25
25
  "identifier": "@skillsmith/mcp-server",
26
- "version": "0.4.5",
26
+ "version": "0.4.7",
27
27
  "transport": {
28
28
  "type": "stdio"
29
29
  },