@mcpskillsio/server 1.0.0 → 1.0.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/index.js +8 -6
- package/package.json +2 -2
package/index.js
CHANGED
|
@@ -352,7 +352,8 @@ server.setRequestHandler(CallToolRequestSchema, async (request) => {
|
|
|
352
352
|
}
|
|
353
353
|
|
|
354
354
|
case "list_packages": {
|
|
355
|
-
const
|
|
355
|
+
const raw = await fetchPackages();
|
|
356
|
+
const packages = raw.packages || raw;
|
|
356
357
|
const filter = args.package_name?.toLowerCase();
|
|
357
358
|
|
|
358
359
|
let filtered = packages;
|
|
@@ -378,12 +379,13 @@ server.setRequestHandler(CallToolRequestSchema, async (request) => {
|
|
|
378
379
|
const lines = ["# MCP Skills — Curated Packages", ""];
|
|
379
380
|
for (const pkg of filtered) {
|
|
380
381
|
lines.push(`## ${pkg.name}`);
|
|
381
|
-
lines.push(pkg.description);
|
|
382
|
+
lines.push(pkg.tagline || pkg.description || "");
|
|
382
383
|
lines.push("");
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
384
|
+
const items = pkg.skills || pkg.repos || [];
|
|
385
|
+
for (const item of items) {
|
|
386
|
+
const name = item.name || `${item.owner}/${item.repo}`;
|
|
387
|
+
const desc = item.description || item.role || "";
|
|
388
|
+
lines.push(` - **${name}** — ${desc}`);
|
|
387
389
|
}
|
|
388
390
|
lines.push("");
|
|
389
391
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mcpskillsio/server",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Trust-score any AI skill or MCP server from inside Claude Code, Cursor, or any MCP client. 12 signals across 4 dimensions with safety scanning.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"license": "MIT",
|
|
25
25
|
"repository": {
|
|
26
26
|
"type": "git",
|
|
27
|
-
"url": "https://github.com/
|
|
27
|
+
"url": "https://github.com/bebravebekind/mcpskills-server"
|
|
28
28
|
},
|
|
29
29
|
"homepage": "https://mcpskills.io",
|
|
30
30
|
"engines": {
|