cnv-lab-mcp
MCP server for reserving lab hardware in GLPI, triggering CNV cluster deployments in Jenkins, and importing ACM spoke clusters.
README
cnv-lab-mcp
MCP server for reserving lab hardware in GLPI, triggering CNV cluster deployments in Jenkins, and importing ACM spoke clusters. No instance URLs, hardware names, or tokens are hardcoded — everything comes from tool arguments or environment variables.
Add to Cursor
Prerequisites
- Node.js >= 20
- A GLPI personal API token (
My Settings→API tokens). OptionalGLPI_APP_TOKENif the instance requires one. - A Jenkins API token (
User→Configure→API Token) plus the short username, not an email.user@example.comreturns 401;userworks. - GLPI profile must have a non-zero
reservationright on the target entity. - Jenkins account needs Job/Build and Job/Read on jobs you will trigger.
Internal TLS / NODE_EXTRA_CA_CERTS
Node's fetch (undici) does not use the OS/keychain CA store the way curl does. If curl works but the MCP server reports fetch failed, set NODE_EXTRA_CA_CERTS to your internal CA bundle and restart Cursor:
export NODE_EXTRA_CA_CERTS=/etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem
TLS errors are reported separately from generic network failures so this is not mysterious.
Configure
Copy .env.example and set:
| Variable | Required | Notes |
|---|---|---|
GLPI_BASE_URL |
yes | With or without /apirest.php |
GLPI_USER_TOKEN |
yes | Personal API token |
GLPI_APP_TOKEN |
no | Only if the instance requires it |
JENKINS_BASE_URL |
yes | Jenkins root URL |
JENKINS_USER |
yes | Short username (not email) |
JENKINS_API_TOKEN |
yes | API token |
Example mcp.json entry (secrets via env interpolation):
{
"mcpServers": {
"cnv-lab-mcp": {
"command": "npx",
"args": ["-y", "cnv-lab-mcp"],
"env": {
"GLPI_BASE_URL": "https://glpi.example.internal",
"GLPI_USER_TOKEN": "${env:GLPI_USER_TOKEN}",
"JENKINS_BASE_URL": "https://jenkins.example.internal",
"JENKINS_USER": "${env:JENKINS_USER}",
"JENKINS_API_TOKEN": "${env:JENKINS_API_TOKEN}",
"NODE_EXTRA_CA_CERTS": "${env:NODE_EXTRA_CA_CERTS}"
}
}
}
}
Until the package is on npm, point args at this repo instead:
"args": ["-y", "github:galkremer1/cnv-lab-mcp"]
Tools
Reservation:
list_reservable_items— browse GLPI reservable assetsfind_available_cluster— match requirements (structured + free-text comments) and rank by earliest free slot. Does not book.check_availability— reservations + gaps for one itemreserve_cluster— book a window; always setsusers_idfrom the sessioncancel_reservation— release a booking
Jenkins:
trigger_jenkins_job— generic trigger;start_atbecomesdelay=NNNsecget_build_status— queue/build + console tailabort_build— stop a build
Cluster access:
get_cluster_info— non-sensitive metadata and console/API URLs from*-data.zipget_cluster_kubeconfig—auth/kubeconfig+auth/kubeadmin-passwordin memory only. Cluster-admin credentials; do not echo them back in chat.
ACM:
import_spoke_cluster— ManagedCluster + KlusterletAddonConfig, apply import manifests to the spoke, poll joinget_managed_cluster_status— hub-side join/available conditions
Scenarios (confirm-before-booking):
list_scenariosplan_scenario— propose clusters/windows/parameters, book nothingexecute_scenario— reserve + trigger from a plan
Built-in scenarios live in src/scenarios/catalog.json and can be extended by PR: basic-bm-cnv, acm-hub-and-spoke, sriov-cnv-cluster.
Development
npm install
npm test
npm run lint
npm run typecheck
npm run build
Manual smoke test against real instances (not run in CI):
npx tsx scripts/smoke.ts
SMOKE_JOB=deploy-ocp-bare-metal-cluster-with-abi-cnv-5.0 SMOKE_CLUSTER=example-cluster npx tsx scripts/smoke.ts
Security
.envis gitignored. Examples use obviously fake placeholders.- CI runs gitleaks on every push/PR.
- Client errors redact tokens and never log
Authorization/user_tokenvalues. get_cluster_kubeconfigdownloads the zip into a Buffer and extracts with JSZip in memory. It never writes the archive orauth/*to disk.get_cluster_infoonly readsdeploydata.json,metadata.json, andinstall-config.backup.yaml.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.