nomad-mcp (udaisingh93/nomad-mcp) is an MCP server listed on the M8ven Trust Index. It scores 54 out of 100, grade D. It declares 17 tools. No publisher has claimed this listing.

D
Caution
54/100

nomad-mcp

Exposes a HashiCorp Nomad cluster as MCP tools for AI agents, enabling read-only inspection of jobs, allocations, nodes, and deployments, with optional write operations like stopping jobs, scaling task groups, restarting allocations, and registering jobs.

Caution. Specific findings reduced this grade. They are listed on the page. Grades reflect the full trust pyramid: code, verification depth, and reputation. New projects cap at C until adoption is earned.

How we verified

Code Verified⚡ Live Monitored: not connected

Verified is a snapshot. Live keeps it current, and builds your track record.

⚡ Connect GitHub → continuous verification on every pushwhy connect →

Who stands behind it

udaisingh93

Source: Glama

Is this your MCP?

Claim it to get a verified publisher badge, a free copy of our full audit findings, and direct contact for any high-priority issues we find. Or connect your repo for our deepest verification, Live Monitored: read-only, revoke anytime. What we access →

Install from

The grade above is for the source repository. Registries can serve a different version, so we mark the ones we were not able to read.

// key findings
⚠️
Known vulnerabilities in dependencies: 5 high
Affects packages this MCP installs at runtime. Upgrade or remove the affected dependency.
No credential exfiltration, no sensitive file access, no obfuscation
Static analysis found nothing flowing your secrets to unexpected places.
Open source with a license and README
Anyone can audit the code, the license is declared, and the publisher documents what it does.
🔐
You'll be asked for 1 credential: NOMAD_TOKEN
These are read from process.env at runtime. Make sure you trust where they’ll be sent.
// tools this server exposes17 tools

These names and descriptions are the publisher's own, read from the source code. We print them as written. Our assessment is the findings above, not this list.

list_jobs

List Nomad jobs, optionally filtered by name prefix and namespace.

get_job

Get the full spec and status of a single Nomad job by ID.

get_job_allocations

List allocations belonging to a job.

get_job_deployments

List deployments for a job.

get_job_evaluations

List evaluations for a job (useful for diagnosing why a job isn't placing).

get_allocation

Get details of a single allocation, including task states and events.

get_allocation_logs

Fetch recent stdout/stderr log output for a task in an allocation.

list_nodes

List client nodes in the Nomad cluster.

get_node

Get details of a single Nomad client node, including allocations and resource usage.

list_deployments

List recent deployments across the cluster.

get_deployment

Get details of a single deployment.

list_namespaces

List Nomad namespaces.

stop_job

Stop a Nomad job. Set purge=true to also remove it from Nomad's state entirely (cannot be undone via job history).

scale_task_group

Scale a task group within a job to a specific count.

reschedule_allocation

Stop a single allocation, causing Nomad to reschedule it as a brand-new allocation (possibly on a different node). This is Nomad's DELETE-equivalent /stop call, not an in-place restart — use restart_allocation if you want the same allocation's tasks restarted in place.

restart_allocation

Restart task(s) within a single allocation in place (same allocation ID, same node) — the direct equivalent of `nomad alloc restart`. Pass task to restart just one task, or omit it to restart all tasks in the allocation.

register_job

Submit (create or update) a Nomad job. Accepts either a full Nomad job spec in HCL (jobHcl) or JSON (jobJson).

// known CVEs in dependencies5 high8 low

Disclosed vulnerabilities in this server's declared npm dependencies (via OSV). Whether each is reachable depends on the installed versions.

high@modelcontextprotocol/sdk@1.0.4GHSA-w48q-cv73-mx4w

Model Context Protocol (MCP) TypeScript SDK does not enable DNS rebinding protection by default

highundici@6.19.8GHSA-f269-vfmq-vjvj

Undici: Malicious WebSocket 64-bit length overflows parser and crashes the client

highundici@6.19.8GHSA-v9p9-hfj2-hcw8

Undici has Unhandled Exception in WebSocket Client Due to Invalid server_max_window_bits Validation

highundici@6.19.8GHSA-vrm6-8vpv-qv8q

Undici has Unbounded Memory Consumption in WebSocket permessage-deflate Decompression

highundici@6.19.8GHSA-vxpw-j846-p89q

undici WebSocket client vulnerable to denial of service via fragment count bypass

Depend on this server? Get alerted when its CVEs change.Watch this server free →
// environment variables
To run this server yourself, you supply these values. They go in your own MCP client configuration and stay on your machine. The secret label means the value is sensitive, not that the server mishandles it.
configNOMAD_ADDRenv =https://nomad.example.com \
configNOMAD_CACERT_(none)_ Path to a CA bundle for a private/internal CA
configNOMAD_MCP_WRITE_MODE
configNOMAD_MCP_WRITE_TOOLSstop_job,scale_task_group
configNOMAD_NAMESPACE_(none)_ Default namespace applied when a tool call doesn't specify one
configNOMAD_SKIP_VERIFYfalse Skip TLS certificate verification
🔐 secretNOMAD_TOKEN_(none)_ ACL token, sent as X-Nomad-Token
// quality suggestions

Tool annotations

No tools have read-only/destructive annotations

Add readOnlyHint or destructiveHint annotations to every tool so hosts can warn users before invoking.

All four hints declared on every tool

17/17 tools missing one or more hints — list_jobs (missing: readOnlyHint, destructiveHint, idempotentHint, openWorldHint); get_job (missing: readOnlyHint, destructiveHint, idempotentHint, openWorldHint); get_job_allocations (missing: readOnlyHint, destructiveHint, idempotentHint, openWorldHint), +14 more. OpenAI's directory rejects tools where any of the four hints are missing or non-boolean.

For every tool, set all four hints (readOnlyHint, destructiveHint, idempotentHint, openWorldHint) to explicit true/false values that match the handler’s actual behaviour.

Tool inputs are validated

15/17 tool handlers declare input schemas (88%)

Declare an inputSchema with zod/joi/yup on every tool definition.

Tool handlers catch errors

Only 0/17 tool handlers wrap calls in try/catch (0%)

Wrap each tool handler body in try/catch and return a structured error response.

Tests exist

No test files found

Add tests that exercise each declared tool.

Production dependencies are patched

0 critical, 5 high severity in production deps — @modelcontextprotocol/sdk@1.0.4 (high), undici@6.19.8 (high)

Run npm audit fix, or upgrade the affected packages to a non-vulnerable version.

Claim the listing to review these findings one by one and send us a correction where you disagree, straight to the team. Claiming also means we tell you when the grade moves, and reach you first if we find anything urgent.

// full audit trail
The findings above are the summary. The full trail, every check we ran, each deduction, the network hosts observed and the dependency advisories, goes to verified publishers, along with an alert whenever a new one lands. Verified publishers can also review each finding and dispute it in one click. Publisher corrections have sharpened several of our checks this month, because the maintainer knows the codebase better than any scanner.
// improvement guidance — verified publishers only
We have 6 concrete improvements we can share with the publisher of this MCP. Each comes with specific guidance to raise the trust score.
// embed badge in your README
[![M8ven Verified](https://m8ven.ai/badge/mcp/udaisingh93/nomad-mcp?variant=verified)](https://m8ven.ai/mcp/udaisingh93/nomad-mcp)
Shows verification status without the grade. Want the grade badge instead? Remove ?variant=verified from the URL.
commit: e9c1a129d428391db5d1f546fbf23a4aeeceeb15
code hash: 3f9b8dd4cb40dffdfb0f9234d2a78ec38433f3edd47ee6f4c8116f187a30c160
view raw JSON →
Check MCPs from inside your assistant
Tool Check · MCP

Vetting this one by hand? Tool Check is an MCP that scores other MCPs. Add it once and ask Claude, ChatGPT, or any MCP client to grade a server, surface CVEs, check the publisher, and suggest safer alternatives — before you install.

https://m8ven.ai/api/mcp/tool-check
check_toolsearch_toolscompare_toolsrecommend_alternativescheck_publisherreport_concern
How to add it →Free · no account needed · works in any MCP client