VuNet MCP HTTP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@VuNet MCP HTTP Servercheck connection status and list available data models"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
VuNet MCP HTTP Server
A Model Context Protocol (MCP) server for VuNet vuSmartMaps using the Streamable HTTP transport. Connects AI assistants (VS Code Copilot, ChatGPT, Claude Desktop, etc.) directly to live VuNet observability data.
Features
HTTP-based MCP — works with any MCP client that supports Streamable HTTP (VS Code, ChatGPT, Claude)
Multi-environment — run one server process per VuNet tenant (UAT, production, sandbox) each on its own port
Auto-authentication — logs in to VuNet automatically, caches session for 1 hour
HTTPS-ready — pass cert/key in config for direct TLS, or put NGINX in front
Related MCP server: Vectra AI MCP Server
Tools Exposed
Tool | Description |
| Check connection status and VuNet tenant info |
| Query any VuNet data model/metric with time range and filters |
| Browse/search available signals (Metric, Event, Log) from the live tenant |
| Static reference list of common signal categories |
Prerequisites
Node.js 18+ — download
A running VuNet vuSmartMaps instance with API access
(For HTTPS) A valid TLS certificate for your domain
Quick Start
1. Get the package
Option A — Clone the repo:
git clone https://github.com/mithung-vunet/vunet-mcp-http.git
cd vunet-mcp-http
npm installOption B — Extract the release zip:
unzip vunet-mcp-deploy.zip
cd vunet-mcp-deploy
npm install2. Configure environments
Copy the example config and fill in your VuNet credentials:
cp config.example.json config.jsonEdit config.json:
{
"environments": {
"production": {
"label": "VuNet Production",
"tenant_url": "https://your-vunet-host.example.com",
"username": "your-username",
"password": "your-password",
"bu_id": "1",
"verify_ssl": true,
"port": 3001,
"ssl_cert": "",
"ssl_key": ""
},
"uat": {
"label": "VuNet UAT",
"tenant_url": "https://your-vunet-uat-host.example.com",
"username": "your-username",
"password": "your-password",
"bu_id": "1",
"verify_ssl": true,
"port": 3002,
"ssl_cert": "",
"ssl_key": ""
}
}
}Note:
config.jsonis git-ignored — never commit real credentials.
3. Start the server
Single environment:
VUNET_ENV=production node index.js
# Windows:
set VUNET_ENV=production && node index.jsAll environments at once (one process per env):
node start-all.jsOutput:
[Vunet MCP] VuNet Production
[Vunet MCP] Listening on http://127.0.0.1:3001/mcp
[Vunet MCP] Tenant: https://your-vunet-host.example.com
[Vunet MCP] Mode: HTTP (no TLS)Configuration Options
config.json fields
Field | Required | Description |
| No | Human-readable name shown in logs |
| Yes | Base URL of your VuNet vuSmartMaps instance |
| Yes | VuNet login username |
| Yes | VuNet login password |
| No | Business Unit ID (default: |
| No | Set |
| No | Port to listen on (default: |
| No | Path to TLS certificate (enables HTTPS if set with |
| No | Path to TLS private key |
Environment variable overrides
All settings can be overridden via environment variables (useful for Docker/CI):
Variable | Override |
| Which environment block to load from |
|
|
|
|
|
|
|
|
|
|
| Bind address (default |
| Path to a custom config file |
| Override port |
Pure env-var mode (no config.json):
VUNET_TENANT_URL=https://vunet.example.com \
VUNET_USERNAME=admin \
VUNET_PASSWORD=secret \
VUNET_BIND_HOST=0.0.0.0 \
node index.jsProduction Deployment (Linux + NGINX)
Run as a background service
# Start all environments in background
VUNET_ENV=production VUNET_BIND_HOST=0.0.0.0 nohup node index.js > prod.log 2>&1 &
VUNET_ENV=uat VUNET_BIND_HOST=0.0.0.0 nohup node index.js > uat.log 2>&1 &NGINX reverse proxy with HTTPS
Install NGINX and configure it to terminate TLS and proxy to Node:
server {
listen 443 ssl;
server_name mcp.your-domain.com;
ssl_certificate /path/to/fullchain.crt; # leaf + intermediate concatenated
ssl_certificate_key /path/to/server.key;
# Route /production/ → Node port 3001
location /production/ {
proxy_pass http://127.0.0.1:3001/mcp;
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_buffering off;
}
# Route /uat/ → Node port 3002
location /uat/ {
proxy_pass http://127.0.0.1:3002/mcp;
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_buffering off;
}
}Important: Include the full certificate chain (leaf + intermediate) in your
ssl_certificatefile. Missing intermediates will cause ChatGPT and other clients to reject the TLS connection.Concatenate them:
cat server.crt intermediate.crt > fullchain.crt
Enable and reload:
sudo ln -s /etc/nginx/sites-available/mcp /etc/nginx/sites-enabled/
sudo nginx -t && sudo systemctl reload nginxMCP Client Configuration
VS Code (GitHub Copilot)
Add to your workspace .vscode/mcp.json:
{
"servers": {
"vunet-production": {
"type": "http",
"url": "https://mcp.your-domain.com/production/"
},
"vunet-uat": {
"type": "http",
"url": "https://mcp.your-domain.com/uat/"
}
}
}Then use Ctrl+Shift+P → MCP: List Servers to connect.
ChatGPT
Go to chatgpt.com → Apps (beta) → New App
Set MCP Server URL to
https://mcp.your-domain.com/uat/Set Authentication to
No AuthCheck the acknowledgment and click Create
Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"vunet": {
"type": "http",
"url": "https://mcp.your-domain.com/production/"
}
}
}Verify the Server
Test the MCP handshake with curl:
curl https://mcp.your-domain.com/uat/ \
-H "Accept: application/json, text/event-stream" \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"test","version":"1.0"}},"id":1}'Expected response:
event: message
data: {"result":{"protocolVersion":"2024-11-05","capabilities":{"tools":{}},"serverInfo":{"name":"vunet-mcp-server","version":"1.0.0"}},"jsonrpc":"2.0","id":1}Troubleshooting
Symptom | Cause | Fix |
| Missing | Normal in browser — MCP clients send the right headers automatically |
| Old server version | Upgrade to v1.1+ which creates a fresh Server per connection |
| Certificate chain incomplete | Concatenate leaf + intermediate into |
| Server can't reach VuNet tenant | Check |
| Missing intermediate cert | Download and concatenate the CA intermediate cert |
| Self-signed cert | Set |
Security Notes
config.jsonis git-ignored — never commit itUse environment variables instead of config files in containerized deployments
Restrict
VUNET_BIND_HOSTto127.0.0.1when running behind NGINX (don't expose Node directly)Use a reverse proxy (NGINX) to handle TLS — avoid putting private keys in app config where possible
License
MIT — © VuNet Systems
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mithung-vunet/vunet_MCP_v1.1_http'
If you have feedback or need assistance with the MCP directory API, please join our Discord server