@nekzus/mcp-server 1.13.1 → 1.13.2
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/package.json +4 -2
- package/server.json +20 -0
- package/smithery.yaml +13 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nekzus/mcp-server",
|
|
3
|
-
"version": "1.13.
|
|
3
|
+
"version": "1.13.2",
|
|
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",
|
|
@@ -14,7 +14,9 @@
|
|
|
14
14
|
"dist",
|
|
15
15
|
"README.md",
|
|
16
16
|
"llms-full.txt",
|
|
17
|
-
"LICENSE"
|
|
17
|
+
"LICENSE",
|
|
18
|
+
"smithery.yaml",
|
|
19
|
+
"server.json"
|
|
18
20
|
],
|
|
19
21
|
"scripts": {
|
|
20
22
|
"build": "npm run build:http",
|
package/server.json
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
3
|
+
"name": "io.github.Nekzus/npm-sentinel-mcp",
|
|
4
|
+
"description": "NPM Sentinel MCP - AI-powered NPM package analysis for security, dependencies, and performance.",
|
|
5
|
+
"repository": {
|
|
6
|
+
"url": "https://github.com/Nekzus/npm-sentinel-mcp",
|
|
7
|
+
"source": "github"
|
|
8
|
+
},
|
|
9
|
+
"version": "{{VERSION}}",
|
|
10
|
+
"packages": [
|
|
11
|
+
{
|
|
12
|
+
"registryType": "npm",
|
|
13
|
+
"identifier": "@nekzus/mcp-server",
|
|
14
|
+
"version": "{{VERSION}}",
|
|
15
|
+
"transport": {
|
|
16
|
+
"type": "stdio"
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
]
|
|
20
|
+
}
|
package/smithery.yaml
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
runtime: "container"
|
|
2
|
+
|
|
3
|
+
# Smithery configuration file: https://smithery.ai/docs/config#smitheryyaml
|
|
4
|
+
startCommand:
|
|
5
|
+
type: "http"
|
|
6
|
+
configSchema:
|
|
7
|
+
type: "object"
|
|
8
|
+
required: []
|
|
9
|
+
properties:
|
|
10
|
+
NPM_REGISTRY_URL:
|
|
11
|
+
type: "string"
|
|
12
|
+
description: "URL of the NPM registry to use (default: https://registry.npmjs.org)"
|
|
13
|
+
default: "https://registry.npmjs.org"
|