@nekzus/mcp-server 1.19.0-alpha.2 → 1.19.0-alpha.4
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 +2 -2
- package/dist/.tsbuildinfo +1 -1
- package/dist/index.d.ts +25 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +97 -46
- package/dist/index.js.map +1 -1
- package/llms-full.txt +67 -9
- package/package.json +9 -9
package/llms-full.txt
CHANGED
|
@@ -240,11 +240,53 @@ interface ScoreDetails {
|
|
|
240
240
|
quality: number;
|
|
241
241
|
popularity: number;
|
|
242
242
|
maintenance: number;
|
|
243
|
-
|
|
243
|
+
final: number;
|
|
244
244
|
}
|
|
245
245
|
|
|
246
246
|
interface NpmScoreResponse {
|
|
247
|
-
|
|
247
|
+
queryPackages: string[];
|
|
248
|
+
results: Array<{
|
|
249
|
+
packageInput: string;
|
|
250
|
+
packageName: string;
|
|
251
|
+
status: 'success' | 'error' | 'success_cache';
|
|
252
|
+
error: string | null;
|
|
253
|
+
data: {
|
|
254
|
+
analyzedAt: string;
|
|
255
|
+
versionInScore: string;
|
|
256
|
+
score: {
|
|
257
|
+
final: number;
|
|
258
|
+
detail: {
|
|
259
|
+
quality: number;
|
|
260
|
+
popularity: number;
|
|
261
|
+
maintenance: number;
|
|
262
|
+
};
|
|
263
|
+
};
|
|
264
|
+
packageInfoFromScore: {
|
|
265
|
+
name: string;
|
|
266
|
+
version: string;
|
|
267
|
+
description: string | null;
|
|
268
|
+
};
|
|
269
|
+
npmStats: {
|
|
270
|
+
downloadsLastMonth: number;
|
|
271
|
+
starsCount: number;
|
|
272
|
+
};
|
|
273
|
+
githubStats: {
|
|
274
|
+
starsCount: number;
|
|
275
|
+
forksCount: number;
|
|
276
|
+
subscribersCount: number;
|
|
277
|
+
issues: {
|
|
278
|
+
count: number;
|
|
279
|
+
openCount: number;
|
|
280
|
+
};
|
|
281
|
+
} | null;
|
|
282
|
+
scorecard?: {
|
|
283
|
+
overallScore: number;
|
|
284
|
+
checks: Array<{ name: string; score: number; reason: string }>;
|
|
285
|
+
};
|
|
286
|
+
};
|
|
287
|
+
message: string;
|
|
288
|
+
}>;
|
|
289
|
+
message: string;
|
|
248
290
|
}
|
|
249
291
|
```
|
|
250
292
|
|
|
@@ -312,16 +354,32 @@ interface NpmRepoStatsInput {
|
|
|
312
354
|
}
|
|
313
355
|
|
|
314
356
|
interface RepoStats {
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
357
|
+
githubRepoUrl: string;
|
|
358
|
+
stars: number;
|
|
359
|
+
forks: number;
|
|
360
|
+
openIssues: number;
|
|
361
|
+
watchers: number;
|
|
362
|
+
createdAt: string | null;
|
|
363
|
+
updatedAt: string | null;
|
|
364
|
+
defaultBranch: string | null;
|
|
365
|
+
hasWiki: boolean | null;
|
|
366
|
+
topics: string[];
|
|
367
|
+
scorecard?: {
|
|
368
|
+
overallScore: number;
|
|
369
|
+
checks: Array<{ name: string; score: number; reason: string }>;
|
|
370
|
+
};
|
|
321
371
|
}
|
|
322
372
|
|
|
323
373
|
interface NpmRepoStatsResponse {
|
|
324
|
-
|
|
374
|
+
queryPackages: string[];
|
|
375
|
+
results: Array<{
|
|
376
|
+
packageInput: string;
|
|
377
|
+
packageName: string;
|
|
378
|
+
status: 'success' | 'error' | 'success_cache';
|
|
379
|
+
error: string | null;
|
|
380
|
+
data: RepoStats;
|
|
381
|
+
message: string;
|
|
382
|
+
}>;
|
|
325
383
|
}
|
|
326
384
|
```
|
|
327
385
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nekzus/mcp-server",
|
|
3
|
-
"version": "1.19.0-alpha.
|
|
3
|
+
"version": "1.19.0-alpha.4",
|
|
4
4
|
"mcpName": "io.github.Nekzus/npm-sentinel-mcp",
|
|
5
5
|
"description": "NPM Sentinel MCP - A powerful Model Context Protocol (MCP) server that revolutionizes NPM package analysis through AI. Built to integrate with Claude and Anthropic AI, it provides real-time intelligence on package security, dependencies, and performance.",
|
|
6
6
|
"type": "module",
|
|
@@ -84,10 +84,10 @@
|
|
|
84
84
|
},
|
|
85
85
|
"homepage": "https://github.com/Nekzus/npm-sentinel-mcp#readme",
|
|
86
86
|
"dependencies": {
|
|
87
|
-
"@modelcontextprotocol/sdk": "^1.
|
|
87
|
+
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
88
88
|
"@smithery/sdk": "3.0.1",
|
|
89
89
|
"node-fetch": "3.3.2",
|
|
90
|
-
"zod": "^4.
|
|
90
|
+
"zod": "^4.4.3"
|
|
91
91
|
},
|
|
92
92
|
"overrides": {
|
|
93
93
|
"hono": "^4.11.7",
|
|
@@ -97,15 +97,15 @@
|
|
|
97
97
|
"lodash": "^4.17.23"
|
|
98
98
|
},
|
|
99
99
|
"devDependencies": {
|
|
100
|
-
"@biomejs/biome": "2.
|
|
100
|
+
"@biomejs/biome": "2.5.3",
|
|
101
101
|
"@semantic-release/changelog": "6.0.3",
|
|
102
102
|
"@semantic-release/git": "10.0.1",
|
|
103
103
|
"@semantic-release/github": "12.0.9",
|
|
104
104
|
"@semantic-release/npm": "13.1.5",
|
|
105
105
|
"@semantic-release/release-notes-generator": "14.1.1",
|
|
106
|
-
"@smithery/cli": "
|
|
107
|
-
"@types/node": "
|
|
108
|
-
"@vitest/coverage-v8": "
|
|
106
|
+
"@smithery/cli": "3.19.0",
|
|
107
|
+
"@types/node": "26.1.1",
|
|
108
|
+
"@vitest/coverage-v8": "4.1.10",
|
|
109
109
|
"chalk": "^5.6.2",
|
|
110
110
|
"cors": "^2.8.6",
|
|
111
111
|
"cz-conventional-changelog": "3.0.1",
|
|
@@ -113,8 +113,8 @@
|
|
|
113
113
|
"semantic-release": "25.0.5",
|
|
114
114
|
"shx": "0.4.0",
|
|
115
115
|
"tsx": "4.19.4",
|
|
116
|
-
"typescript": "
|
|
117
|
-
"vitest": "
|
|
116
|
+
"typescript": "7.0.2",
|
|
117
|
+
"vitest": "4.1.10",
|
|
118
118
|
"zod-to-json-schema": "^3.25.0"
|
|
119
119
|
},
|
|
120
120
|
"config": {
|