@mcpx-digital/env-check
Provides tools for comparing .env.example against .env files, detecting missing, extra, or empty environment variables, and generating redacted reports without exposing secret values.
Click on "Deploy 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., "@@mcpx-digital/env-checkCompare .env.example to .env and list the missing keys"
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.
@mcpx-digital/env-check
MCP server that compares .env.example vs .env, finds missing/extra/empty keys, and produces redacted reports.
Never echoes secrets. All value reports are redacted (
***redacted***/***present***). Local files only — no uploading env files anywhere.
Install (MCPX / npx)
npx -y @mcpx-digital/env-checkPrepared for npm as
@mcpx-digital/env-check. Until published, run from a local clone.
Related MCP server: env-secret-exposure-analyzer-mcp
Cursor mcp.json example
{
"mcpServers": {
"env-check": {
"command": "npx",
"args": ["-y", "@mcpx-digital/env-check"]
}
}
}Local clone:
{
"mcpServers": {
"env-check": {
"command": "node",
"args": ["/absolute/path/to/env-check-mcp/index.js"]
}
}
}Tools
Tool | What it does |
| Missing / extra / empty keys vs |
| Empty or missing required vars (values redacted) |
| Paste-safe key inventory with all values redacted |
Disclaimer
Use only on env files you own. Do not commit real .env files. This tool helps catch misconfiguration; it does not replace a secrets manager.
Example prompts
“Compare .env.example to .env and list missing keys”
“Which required env vars are empty? (redacted)”
“Give me a redacted inventory of .env for a ticket”
Development
git clone https://github.com/TheoryofShadows/env-check-mcp.git
cd env-check-mcp
npm install
npm test
node index.jsSell / list on MCPX
Suggested listing price: $6.
Install command: npx -y @mcpx-digital/env-check
License
MIT © TheoryofShadows
This server cannot be deployed
Maintenance
Related MCP Connectors
Scan configs, files, or text for leaked secrets and obvious misconfigurations. Nothing stored.
Compare two JSON files deeply without worrying about key or array order. Detect missing, extra, an…
Detect breaking changes, generate changelogs, diff, and validate OpenAPI specs.
Compare two JSON files deeply, regardless of order. Get a detailed difference report highlighting…
Related MCP Servers
- AlicenseAqualityAmaintenanceChecks your local development environment for common issues like wrong Node version, missing Docker, missing git config, missing .env keys, and busy ports, and provides fixes.6171MIT
- AlicenseAqualityDmaintenanceScans projects for hardcoded secrets, unprotected .env files, and console.log leaks to prevent credential exposure.527MIT
- AlicenseAqualityCmaintenanceScans diffs, files, and snippets for leaked secrets like AWS keys, GitHub tokens, and private keys, returning redacted findings while running fully locally without network calls.1MIT
- AlicenseAqualityCmaintenanceResolves configuration and environment-variable precedence across .env files, Docker Compose, and Kubernetes, showing what a variable actually evaluates to at runtime and why.536MIT