A Model Context Protocol (MCP) server that enables AI assistants like Claude to interact with OpenStudio building energy models. Load, inspect, and manipulate OpenStudio Model (OSM) files through a comprehensive set of tools accessible via natural language.
This project is heavily based on the EnergyPlus MCP Server developed by LBNL-ETA (Lawrence Berkeley National Laboratory - Energy Technologies Area). The server architecture, tool structure, and implementation patterns have been replicated as closely as possible from their excellent work.
The tools in this server are built using the OpenStudio-Toolkit library, which provides Python interfaces to OpenStudio's building modeling capabilities.
This project was developed with the invaluable assistance of Claude Code powered by Anthropic's Claude Sonnet 4.5.
load_osm_model- Load OpenStudio Model files with intelligent path resolutionsave_osm_model- Save modified modelsconvert_to_idf- Export to EnergyPlus IDF formatcopy_file- Copy files with fuzzy matching and smart discoveryget_model_summary- Get comprehensive model statisticsget_building_info- Get building object details
list_spaces- List all spaces with propertiesget_space_details- Get detailed information about a specific spacelist_thermal_zones- List all thermal zonesget_thermal_zone_details- Get detailed zone information
list_materials- List all materials with thermal properties
list_air_loops- List all air loop HVAC systems
list_people_loads- List occupancy loadslist_lighting_loads- List lighting power densitieslist_electric_equipment- List equipment loads
list_schedule_rulesets- List all schedule rulesets
get_server_info- Get server configuration and statusget_current_model_status- Check currently loaded model
- Intelligent File Discovery: Automatically finds files in multiple locations including Claude Desktop uploads
- Fuzzy Matching: Finds files even with partial names or typos
- Dual Environment Support: Works seamlessly in both Docker and Claude Desktop
- Comprehensive API: Covers building geometry, HVAC, loads, materials, and schedules
- Python 3.10+
- Docker Desktop (for containerized deployment)
- OpenStudio 3.7.0 (installed in Docker container)
- Claude Desktop, VS Code, or Cursor (for AI assistant integration)
git clone https://github.com/roruizf/openstudio-mcp-server.git
cd openstudio-mcp-serverdocker build -t openstudio-mcp-dev -f .devcontainer/Dockerfile .This builds a container with:
- Python 3.12
- OpenStudio 3.7.0 (SDK and Python bindings)
- All required dependencies
- OpenStudio-Toolkit library
openstudioPython package (v3.7.0)
Edit your Claude Desktop configuration file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
Add this configuration:
{
"mcpServers": {
"openstudio": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"-v",
"/absolute/path/to/openstudio-mcp-server:/workspace",
"-w",
"/workspace",
"openstudio-mcp-dev",
"uv",
"run",
"python",
"-m",
"openstudio_mcp_server.server"
]
}
}
}Important: Replace /absolute/path/to/openstudio-mcp-server with your actual path:
- macOS/Linux:
/Users/username/openstudio-mcp-server - Windows:
C:\openstudio-mcp-server(use forward slashes in JSON)
Close and reopen Claude Desktop to load the MCP server.
In Claude Desktop, ask:
"What OpenStudio tools are available?"
Claude should list all available tools.
-
Place your OSM file in the
sample_files/models/directory -
Ask Claude to work with it:
"Load R2F-Office-Hub-006.osm and tell me about the building" -
Claude will:
- Load the model using
load_osm_model - Extract information using
get_model_summary,list_spaces, etc. - Present the results in natural language
- Load the model using
You: "Load the office building model and describe its HVAC systems"
Claude will:
1. Use load_osm_model("office-building.osm")
2. Use list_air_loops()
3. Summarize the HVAC configuration
You: "Convert this model to IDF format for simulation"
Claude will:
1. Use convert_to_idf()
2. Report the output file location
You: "Which spaces have the highest lighting power density?"
Claude will:
1. Use list_spaces()
2. Use list_lighting_loads()
3. Analyze and rank the results
Claude Desktop can handle files you upload directly:
- Upload your
.osmfile in the chat - Ask Claude to analyze it
- The server automatically finds and loads it from Claude's upload directory
openstudio-mcp-server/
├── openstudio_mcp_server/ # Main server package
│ ├── server.py # MCP tool definitions
│ ├── openstudio_manager.py # Business logic layer
│ ├── config.py # Configuration management
│ └── utils/
│ ├── path_utils.py # Intelligent path resolution
│ └── __init__.py
├── openstudio_toolkit/ # OpenStudio Python library
├── sample_files/ # Example models
│ ├── models/ # OSM files
│ └── weather/ # EPW weather files
├── outputs/ # Generated files (IDF exports, etc.)
├── logs/ # Server logs
├── .devcontainer/
│ └── Dockerfile # Docker container definition
├── pyproject.toml # Python dependencies
├── README.md # This file
├── USER_GUIDE.md # User documentation
├── DEVELOPER_NOTES.md # Technical documentation
└── FILE_ACCESS_GUIDE.md # File handling details
- USER_GUIDE.md - Simple guide for end users
- DEVELOPER_NOTES.md - Technical implementation details
- FILE_ACCESS_GUIDE.md - How file discovery works
- CLAUDE_DESKTOP_FIX.md - Claude Desktop integration notes
User (Claude Desktop)
↓
Claude AI (analyzes request, selects tools)
↓
MCP Protocol (JSON-RPC over stdin/stdout)
↓
FastMCP Server (server.py - tool definitions)
↓
OpenStudioManager (openstudio_manager.py - business logic)
↓
OpenStudio-Toolkit (Python wrapper functions)
↓
OpenStudio SDK (C++ library with Python bindings)
- User asks: "How many spaces are in this building?"
- Claude selects tool:
list_spaces() - Server executes:
- Checks if model is loaded
- Calls OpenStudio-Toolkit function
- Extracts space data into DataFrame
- Converts to JSON
- Returns to Claude:
{"status": "success", "count": 12, "spaces": [...]} - Claude responds: "This building has 12 spaces..."
See DEVELOPER_NOTES.md for detailed instructions on:
- Adding new MCP tools
- Integrating OpenStudio-Toolkit functions
- Error handling patterns
- Testing procedures
# In Docker container
docker run --rm -i \
-v "$(pwd):/workspace" \
openstudio-mcp-dev bash -c "
cd /workspace && uv run python -m pytest tests/
"# Install dependencies
uv pip install -e .
# Run server locally
uv run python -m openstudio_mcp_server.server- Ensure you've loaded a model first with
load_osm_model - Check that the file is in
sample_files/models/
- Verify the file path is correct
- Check file is in mounted workspace directory
- Try using just the filename (server will search automatically)
- Verify MCP server is connected (check Claude Desktop status bar)
- Restart Claude Desktop
- Check server logs in
logs/openstudio_mcp_server.log
- Ensure Docker Desktop is running
- Verify volume mount path is correct and absolute
- Check Docker image was built successfully
This means the OpenStudio Python bindings are not installed. This should not happen with the Docker image, but if you're running locally:
# Install OpenStudio Python package
pip install openstudio==3.7.0
# Verify installation
python -c "import openstudio; print(openstudio.openStudioVersion())"Note: The Docker image automatically installs this package during build.
Future enhancements planned:
- Model Modification: Tools to create and modify spaces, zones, surfaces
- Advanced HVAC: Detailed HVAC component inspection and editing
- Simulation: Execute EnergyPlus simulations
- Results Analysis: Parse and visualize simulation results
- Parametric Studies: Automated parametric analysis workflows
- Geometry Tools: Create building geometry from scratch
Contributions are welcome! Please:
- Fork the repository
- Create a feature branch
- Make your changes
- Add tests if applicable
- Submit a pull request
MIT License - See LICENSE file for details
- LBNL-ETA for the EnergyPlus MCP Server architecture that served as the foundation for this project
- OpenStudio-Toolkit for providing the Python interface to OpenStudio
- NREL for developing and maintaining the OpenStudio SDK
- Anthropic for Claude and Claude Code (Sonnet 4.5)
- Model Context Protocol community for the MCP specification
- Issues: GitHub Issues
- Discussions: GitHub Discussions
- OpenStudio Documentation: https://openstudio.net/
Built with ❤️ using Claude Code, Python and OpenStudio