cnv-lab-mcp
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., "@cnv-lab-mcpFind an available cluster for a 2-day test starting Monday."
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.
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
Related MCP server: DCI MCP Server
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.pemTLS errors are reported separately from generic network failures so this is not mysterious.
Configure
Copy .env.example and set:
Variable | Required | Notes |
| yes | With or without |
| yes | Personal API token |
| no | Only if the instance requires it |
| yes | Jenkins root URL |
| yes | Short username (not email) |
| 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 buildManual 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.tsSecurity
.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.
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.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceMCP server for automating VLP lab VM operations, exposing VM management tools to AI agents like Cursor and Claude Code.
- AlicenseAqualityBmaintenanceMCP server for DCI API enabling AI models to extract and analyze DCI jobs, components, and topics, with integrations for Google Drive, Jira, GitHub, and Red Hat support cases.71Apache 2.0
- AlicenseNot gradedqualityDmaintenanceMCP server for interacting with QUADS infrastructure systems via API, enabling resource management and automation through LLM applications.MIT
- FlicenseAqualityDmaintenanceAn MCP server for OpenShift Baremetal IPI cluster provisioning, allowing users to generate and validate install-config.yaml files, test BMC connectivity, validate networks, and manage cluster installation lifecycle.24
Related MCP Connectors
MCP server for Appcircle mobile CI/CD platform.
An MCP server that let you interact with Cycloid.io Internal Development Portal and Platform
A MCP server built for developers enabling Git based project management with project and personal…
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/galkremer1/cnv-lab-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server