An MCP (Model Context Protocol) server that inspects your local development environment and reports missing dependencies, version mismatches, and misconfigured environment variables to any MCP-compatible AI assistant.
Works with Claude Desktop, Cursor, Gemini CLI, and any other client that supports stdio-transport MCP servers.
Server Config
{
"mcpServers": {
"env-validator": {
"command": "go",
"args": [
"run",
"/absolute/path/to/your/repo/main.go"
],
"env": {
"YOUR_ENV_VAR": "value_if_needed"
}
}
}
}