@mithung/vunet-mcp-server 2.0.0 → 2.0.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/CHANGELOG.md +20 -1
- package/QUICKSTART.md +7 -7
- package/README.md +18 -18
- package/SETUP.md +5 -5
- package/cli.js +2 -0
- package/index.js +1 -1
- package/package.json +4 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,10 +5,29 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [2.0.1] - 2026-02-13
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- Updated all documentation with correct package name (@mithung/vunet-mcp-server)
|
|
12
|
+
- Fixed installation commands in README, SETUP, and QUICKSTART guides
|
|
13
|
+
- Updated GitHub repository URLs
|
|
14
|
+
|
|
15
|
+
## [2.0.0] - 2026-02-13
|
|
16
|
+
|
|
17
|
+
### Added
|
|
18
|
+
- New tool: `vunet_list_data_models` - List 80+ data models by category
|
|
19
|
+
- DATA_MODELS.md - Comprehensive data model reference documentation
|
|
20
|
+
- Bearer token authentication support (alternative to username/password)
|
|
21
|
+
- Enhanced configuration examples with dual authentication methods
|
|
22
|
+
|
|
23
|
+
### Changed
|
|
24
|
+
- Package scoped under @mithung namespace
|
|
25
|
+
- Version bumped to 2.0.0 for major feature additions
|
|
26
|
+
|
|
8
27
|
## [1.0.0] - 2026-02-13
|
|
9
28
|
|
|
10
29
|
### Added
|
|
11
|
-
- Initial release of @vunet
|
|
30
|
+
- Initial release of @mithung/vunet-mcp-server
|
|
12
31
|
- Multi-tenant support for Vunet vuSmartMaps
|
|
13
32
|
- MCP tools: `vunet_query_metric` and `vunet_get_status`
|
|
14
33
|
- Session-based authentication with automatic token management
|
package/QUICKSTART.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# 🚀 Vunet MCP Server - Quick Start Card
|
|
2
2
|
|
|
3
3
|
## Package Name
|
|
4
|
-
**`@vunet
|
|
4
|
+
**`@mithung/vunet-mcp-server`** - v2.0.0
|
|
5
5
|
|
|
6
6
|
---
|
|
7
7
|
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
|
|
10
10
|
### Global (Recommended - After Publishing)
|
|
11
11
|
```bash
|
|
12
|
-
npm install -g @vunet
|
|
12
|
+
npm install -g @mithung/vunet-mcp-server
|
|
13
13
|
```
|
|
14
14
|
|
|
15
15
|
### From Tarball (Internal Distribution)
|
|
@@ -38,7 +38,7 @@ Create `.vscode/mcp.json`:
|
|
|
38
38
|
"mcpServers": {
|
|
39
39
|
"vunet": {
|
|
40
40
|
"command": "npx",
|
|
41
|
-
"args": ["@vunet
|
|
41
|
+
"args": ["@mithung/vunet-mcp-server"],
|
|
42
42
|
"env": {
|
|
43
43
|
"VUNET_TENANT_URL": "https://your-tenant.com",
|
|
44
44
|
"VUNET_USERNAME": "username",
|
|
@@ -57,7 +57,7 @@ Create `.vscode/mcp.json`:
|
|
|
57
57
|
"mcpServers": {
|
|
58
58
|
"vunet": {
|
|
59
59
|
"command": "npx",
|
|
60
|
-
"args": ["@vunet
|
|
60
|
+
"args": ["@mithung/vunet-mcp-server"],
|
|
61
61
|
"env": {
|
|
62
62
|
"VUNET_TENANT_URL": "https://your-tenant.com",
|
|
63
63
|
"VUNET_BEARER_TOKEN": "your-token-here",
|
|
@@ -76,12 +76,12 @@ Create `.vscode/mcp.json`:
|
|
|
76
76
|
"mcpServers": {
|
|
77
77
|
"vunet-prod": {
|
|
78
78
|
"command": "npx",
|
|
79
|
-
"args": ["@vunet
|
|
79
|
+
"args": ["@mithung/vunet-mcp-server"],
|
|
80
80
|
"env": { "VUNET_TENANT_URL": "...", ... }
|
|
81
81
|
},
|
|
82
82
|
"vunet-staging": {
|
|
83
83
|
"command": "npx",
|
|
84
|
-
"args": ["@vunet
|
|
84
|
+
"args": ["@mithung/vunet-mcp-server"],
|
|
85
85
|
"env": { "VUNET_TENANT_URL": "...", ... }
|
|
86
86
|
}
|
|
87
87
|
}
|
|
@@ -125,7 +125,7 @@ npm login
|
|
|
125
125
|
npm publish --access public
|
|
126
126
|
|
|
127
127
|
# 3. Done!
|
|
128
|
-
# Team can now: npm install -g @vunet
|
|
128
|
+
# Team can now: npm install -g @mithung/vunet-mcp-server
|
|
129
129
|
```
|
|
130
130
|
|
|
131
131
|
---
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# @vunet
|
|
1
|
+
# @mithung/vunet-mcp-server
|
|
2
2
|
|
|
3
|
-
[](https://badge.fury.io/js/@mithung%2Fvunet-mcp-server)
|
|
4
4
|
[](https://opensource.org/licenses/MIT)
|
|
5
5
|
[](https://nodejs.org)
|
|
6
6
|
|
|
@@ -56,19 +56,19 @@ Query metrics, traces, logs, and data models from your Vunet tenants using natur
|
|
|
56
56
|
### Global Installation (Recommended)
|
|
57
57
|
|
|
58
58
|
```bash
|
|
59
|
-
npm install -g @vunet
|
|
59
|
+
npm install -g @mithung/vunet-mcp-server
|
|
60
60
|
```
|
|
61
61
|
|
|
62
62
|
### Local Installation
|
|
63
63
|
|
|
64
64
|
```bash
|
|
65
|
-
npm install @vunet
|
|
65
|
+
npm install @mithung/vunet-mcp-server
|
|
66
66
|
```
|
|
67
67
|
|
|
68
68
|
### From Source
|
|
69
69
|
|
|
70
70
|
```bash
|
|
71
|
-
git clone https://github.com/
|
|
71
|
+
git clone https://github.com/mithung/vunet-mcp-server.git
|
|
72
72
|
cd vunet-mcp-server
|
|
73
73
|
npm install
|
|
74
74
|
npm link
|
|
@@ -88,7 +88,7 @@ Add to your `settings.json` or `.vscode/mcp.json`:
|
|
|
88
88
|
"mcpServers": {
|
|
89
89
|
"vunet": {
|
|
90
90
|
"command": "npx",
|
|
91
|
-
"args": ["@vunet
|
|
91
|
+
"args": ["@mithung/vunet-mcp-server"],
|
|
92
92
|
"env": {
|
|
93
93
|
"VUNET_TENANT_URL": "https://your-tenant.vunetsystems.com",
|
|
94
94
|
"VUNET_USERNAME": "your-username",
|
|
@@ -107,7 +107,7 @@ Add to your `settings.json` or `.vscode/mcp.json`:
|
|
|
107
107
|
"mcpServers": {
|
|
108
108
|
"vunet": {
|
|
109
109
|
"command": "npx",
|
|
110
|
-
"args": ["@vunet
|
|
110
|
+
"args": ["@mithung/vunet-mcp-server"],
|
|
111
111
|
"env": {
|
|
112
112
|
"VUNET_TENANT_URL": "https://your-tenant.vunetsystems.com",
|
|
113
113
|
"VUNET_BEARER_TOKEN": "your-bearer-token-here",
|
|
@@ -149,7 +149,7 @@ Create or edit `.vscode/mcp.json` in your workspace:
|
|
|
149
149
|
"mcpServers": {
|
|
150
150
|
"vunet": {
|
|
151
151
|
"command": "npx",
|
|
152
|
-
"args": ["@vunet
|
|
152
|
+
"args": ["@mithung/vunet-mcp-server"],
|
|
153
153
|
"env": {
|
|
154
154
|
"VUNET_TENANT_URL": "https://your-tenant.com",
|
|
155
155
|
"VUNET_USERNAME": "your-username",
|
|
@@ -168,7 +168,7 @@ Create or edit `.vscode/mcp.json` in your workspace:
|
|
|
168
168
|
"mcpServers": {
|
|
169
169
|
"vunet": {
|
|
170
170
|
"command": "npx",
|
|
171
|
-
"args": ["@vunet
|
|
171
|
+
"args": ["@mithung/vunet-mcp-server"],
|
|
172
172
|
"env": {
|
|
173
173
|
"VUNET_TENANT_URL": "https://your-tenant.com",
|
|
174
174
|
"VUNET_BEARER_TOKEN": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
|
|
@@ -187,7 +187,7 @@ Create or edit `.vscode/mcp.json` in your workspace:
|
|
|
187
187
|
"mcpServers": {
|
|
188
188
|
"vunet-production": {
|
|
189
189
|
"command": "npx",
|
|
190
|
-
"args": ["@vunet
|
|
190
|
+
"args": ["@mithung/vunet-mcp-server"],
|
|
191
191
|
"env": {
|
|
192
192
|
"VUNET_TENANT_URL": "https://prod.company.com",
|
|
193
193
|
"VUNET_USERNAME": "prod-user",
|
|
@@ -198,7 +198,7 @@ Create or edit `.vscode/mcp.json` in your workspace:
|
|
|
198
198
|
},
|
|
199
199
|
"vunet-staging": {
|
|
200
200
|
"command": "npx",
|
|
201
|
-
"args": ["@vunet
|
|
201
|
+
"args": ["@mithung/vunet-mcp-server"],
|
|
202
202
|
"env": {
|
|
203
203
|
"VUNET_TENANT_URL": "https://staging.company.com",
|
|
204
204
|
"VUNET_USERNAME": "staging-user",
|
|
@@ -513,7 +513,7 @@ curl -X POST https://your-tenant.com/vuSmartMaps/api/1/bu/1/auth/users/login/ \
|
|
|
513
513
|
1. Check `.vscode/mcp.json` or `settings.json` syntax
|
|
514
514
|
2. Reload VS Code window (`Ctrl+Shift+P` → "Developer: Reload Window")
|
|
515
515
|
3. Check VS Code output panel for errors
|
|
516
|
-
4. Verify package is installed: `npm list -g @vunet
|
|
516
|
+
4. Verify package is installed: `npm list -g @mithung/vunet-mcp-server`
|
|
517
517
|
|
|
518
518
|
#### 5. Empty or Missing Data
|
|
519
519
|
|
|
@@ -566,7 +566,7 @@ Create a Kubernetes dashboard showing pod health for the last 30 minutes
|
|
|
566
566
|
### Run Locally
|
|
567
567
|
|
|
568
568
|
```bash
|
|
569
|
-
git clone https://github.com/
|
|
569
|
+
git clone https://github.com/mithung/vunet-mcp-server.git
|
|
570
570
|
cd vunet-mcp-server
|
|
571
571
|
npm install
|
|
572
572
|
|
|
@@ -662,16 +662,16 @@ MIT License - see [LICENSE](LICENSE) file for details
|
|
|
662
662
|
|
|
663
663
|
- **Vunet Systems:** https://vunetsystems.com
|
|
664
664
|
- **MCP Protocol:** https://modelcontextprotocol.io
|
|
665
|
-
- **npm Package:** https://www.npmjs.com/package/@vunet
|
|
666
|
-
- **GitHub:** https://github.com/
|
|
667
|
-
- **Issues:** https://github.com/
|
|
665
|
+
- **npm Package:** https://www.npmjs.com/package/@mithung/vunet-mcp-server
|
|
666
|
+
- **GitHub:** https://github.com/mithung/vunet-mcp-server
|
|
667
|
+
- **Issues:** https://github.com/mithung/vunet-mcp-server/issues
|
|
668
668
|
|
|
669
669
|
---
|
|
670
670
|
|
|
671
671
|
## 📞 Support
|
|
672
672
|
|
|
673
|
-
- **Documentation:** [GitHub Wiki](https://github.com/
|
|
674
|
-
- **Issues:** [GitHub Issues](https://github.com/
|
|
673
|
+
- **Documentation:** [GitHub Wiki](https://github.com/mithung/vunet-mcp-server/wiki)
|
|
674
|
+
- **Issues:** [GitHub Issues](https://github.com/mithung/vunet-mcp-server/issues)
|
|
675
675
|
- **Email:** support@vunetsystems.com
|
|
676
676
|
|
|
677
677
|
---
|
package/SETUP.md
CHANGED
|
@@ -15,7 +15,7 @@ This guide helps you set up the Vunet MCP Server for use with VS Code, GitHub Co
|
|
|
15
15
|
|
|
16
16
|
```bash
|
|
17
17
|
# Install globally
|
|
18
|
-
npm install -g @vunet
|
|
18
|
+
npm install -g @mithung/vunet-mcp-server
|
|
19
19
|
|
|
20
20
|
# Verify installation
|
|
21
21
|
vunet-mcp --version
|
|
@@ -28,7 +28,7 @@ vunet-mcp --version
|
|
|
28
28
|
"mcpServers": {
|
|
29
29
|
"vunet": {
|
|
30
30
|
"command": "npx",
|
|
31
|
-
"args": ["@vunet
|
|
31
|
+
"args": ["@mithung/vunet-mcp-server"],
|
|
32
32
|
"env": {
|
|
33
33
|
"VUNET_TENANT_URL": "https://your-tenant.com",
|
|
34
34
|
"VUNET_USERNAME": "your-username",
|
|
@@ -84,7 +84,7 @@ Connect to multiple Vunet tenants simultaneously:
|
|
|
84
84
|
"mcpServers": {
|
|
85
85
|
"vunet-production": {
|
|
86
86
|
"command": "npx",
|
|
87
|
-
"args": ["@vunet
|
|
87
|
+
"args": ["@mithung/vunet-mcp-server"],
|
|
88
88
|
"env": {
|
|
89
89
|
"VUNET_TENANT_URL": "https://prod.company.com",
|
|
90
90
|
"VUNET_USERNAME": "prod-user",
|
|
@@ -95,7 +95,7 @@ Connect to multiple Vunet tenants simultaneously:
|
|
|
95
95
|
},
|
|
96
96
|
"vunet-staging": {
|
|
97
97
|
"command": "npx",
|
|
98
|
-
"args": ["@vunet
|
|
98
|
+
"args": ["@mithung/vunet-mcp-server"],
|
|
99
99
|
"env": {
|
|
100
100
|
"VUNET_TENANT_URL": "https://staging.company.com",
|
|
101
101
|
"VUNET_USERNAME": "staging-user",
|
|
@@ -106,7 +106,7 @@ Connect to multiple Vunet tenants simultaneously:
|
|
|
106
106
|
},
|
|
107
107
|
"vunet-dev": {
|
|
108
108
|
"command": "npx",
|
|
109
|
-
"args": ["@vunet
|
|
109
|
+
"args": ["@mithung/vunet-mcp-server"],
|
|
110
110
|
"env": {
|
|
111
111
|
"VUNET_TENANT_URL": "https://dev.company.com",
|
|
112
112
|
"VUNET_USERNAME": "dev-user",
|
package/cli.js
ADDED
package/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mithung/vunet-mcp-server",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.2",
|
|
4
4
|
"description": "Model Context Protocol (MCP) Server for Vunet vuSmartMaps - Multi-tenant observability platform integration",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"bin": {
|
|
8
|
-
"vunet-mcp": "./
|
|
8
|
+
"vunet-mcp": "./cli.js",
|
|
9
|
+
"@mithung/vunet-mcp-server": "./cli.js"
|
|
9
10
|
},
|
|
10
11
|
"scripts": {
|
|
11
12
|
"start": "node index.js",
|
|
@@ -50,6 +51,7 @@
|
|
|
50
51
|
},
|
|
51
52
|
"files": [
|
|
52
53
|
"index.js",
|
|
54
|
+
"cli.js",
|
|
53
55
|
"README.md",
|
|
54
56
|
"SETUP.md",
|
|
55
57
|
"QUICKSTART.md",
|