Idfkit Mcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Idfkit Mcp (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
An MCP server that lets AI assistants work directly with EnergyPlus building energy models. Connect it to Claude, ChatGPT, Cursor, Codex, or any MCP-compatible client and use natural language to:
ZoneHVAC:IdealLoadsAirSystem accepts, what values are valid, and get links to the official EnergyPlus documentationBuilt on idfkit, it supports EnergyPlus 8.9 through 26.1 (17 versions with bundled schemas). Schema exploration, model editing, and validation work out of the box with no external dependencies. Running simulations requires a local EnergyPlus install — the server discovers it automatically via PATH, the ENERGYPLUS_DIR env var, or standard OS install locations. A Docker image with EnergyPlus bundled is also available.
[Documentation](https://mcp.idfkit.com/docs/) | [GitHub](https://github.com/idfkit/idfkit-mcp/)
The server exposes 37 tools across ten categories, plus 13 MCP resources for read-only data access:
| Category | Tools | What they do |
|---|---|---|
| Schema | 4 | Explore object types, fields, constraints, and valid references |
| Model Read | 6 | Load IDF/epJSON/OSM files, inspect objects, search, and read change history |
| Model Write | 10 | Create models, add/update/remove/rename/duplicate objects, save, and manage sessions |
| Validation | 2 | Schema validation and pre-simulation integrity checks |
| Simulation | 8 | Run EnergyPlus, query variables and tabular reports, export time series, analyze peak loads, and view reports |
| Weather | 2 | Search weather stations worldwide and download EPW/DDY files |
| Geometry | 1 | Interactive 3D building geometry viewer (MCP Apps) |
| Schedules | 1 | Interactive schedule heatmap viewer (MCP Apps) |
| Migration | 1 | Migrate IDF models forward across EnergyPlus versions |
| Documentation | 2 | Search and read EnergyPlus documentation from docs.idfkit.com |
All tools return structured Pydantic models. Schema, validation, and search results include direct doc_url links to the relevant EnergyPlus documentation.
Session state (loaded model, simulation results, weather file) is persisted to disk automatically, so clients that restart the server between turns (e.g. Codex) can resume where they left off.
pip install idfkit-mcpOr with uv:
uv add idfkit-mcpRun as stdio MCP server (default):
idfkit-mcpRun as Streamable HTTP MCP server:
idfkit-mcp --transport streamable-http --host 127.0.0.1 --port 8000Add idfkit-mcp to your MCP client. Example for Claude Desktop (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"idfkit": {
"command": "uvx",
"args": ["--from", "idfkit-mcp", "idfkit-mcp"]
}
}
}See MCP Client Setup for all supported clients (Claude Desktop, Cursor, VS Code, Claude Code, Windsurf, ChatGPT, Codex, JetBrains, Cline, Continue, and Zed).
This project uses uv for dependency management and Zensical for documentation.
# Clone the repository
git clone https://github.com/idfkit/idfkit-mcp.git
cd idfkit-mcp
# Install dependencies and pre-commit hooks
make installmake install # Install dependencies and pre-commit hooks
make check # Run linting, formatting, and type checks
make test # Run tests with coverage
make docs # Serve documentation locally
make docs-test # Test documentation build
make docker-build # Build base Docker image (no EnergyPlus)
make docker-build-sim ENERGYPLUS_TARBALL_URL=<linux-tarball-url> # Build simulation image
make docker-build-sim DOCKER_PLATFORM=linux/amd64 ENERGYPLUS_TARBALL_URL=<linux-x86_64-tarball-url> # Apple Silicon + x86 tarball
make docker-run # Run Docker containeruv version --bump <major|minor|patch>1.0.0)The GitHub Action will automatically publish to PyPI.
Contributions are welcome! Please see CONTRIBUTING.md for guidelines.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.