@nekzus/mcp-server 1.13.0 → 1.13.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/README.md +25 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -96,6 +96,31 @@ This MCP server now supports HTTP streamable transport through Smithery.ai for e
|
|
|
96
96
|
}
|
|
97
97
|
```
|
|
98
98
|
|
|
99
|
+
### Configuration
|
|
100
|
+
|
|
101
|
+
The server supports the following configuration options:
|
|
102
|
+
|
|
103
|
+
| Environment Variable | CLI Argument | Default | Description |
|
|
104
|
+
| -------------------- | ------------ | ------- | ----------- |
|
|
105
|
+
| `NPM_REGISTRY_URL` | `config.NPM_REGISTRY_URL` | `https://registry.npmjs.org` | URL of the NPM registry to use for all requests |
|
|
106
|
+
|
|
107
|
+
#### HTTP Deployment (Smithery/Docker)
|
|
108
|
+
|
|
109
|
+
When deploying via Smithery or Docker, you can configure these options in your configuration file:
|
|
110
|
+
|
|
111
|
+
```json
|
|
112
|
+
{
|
|
113
|
+
"mcpServers": {
|
|
114
|
+
"npm-sentinel": {
|
|
115
|
+
"type": "http",
|
|
116
|
+
"url": "https://smithery.ai/server/@Nekzus/npm-sentinel-mcp",
|
|
117
|
+
"config": {
|
|
118
|
+
"NPM_REGISTRY_URL": "https://registry.npmjs.org"
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
```
|
|
99
124
|
### Docker
|
|
100
125
|
|
|
101
126
|
#### Build
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nekzus/mcp-server",
|
|
3
|
-
"version": "1.13.
|
|
3
|
+
"version": "1.13.1",
|
|
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",
|