Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"openstudio": {
"args": [
"run",
"--rm",
"-i",
"-v",
"C:\\:/mnt/c",
"-v",
"C:\\PATH\\TO\\YOUR\\openstudio-mcp-server:/workspace",
"-w",
"/workspace/openstudio-mcp-server",
"openstudio-mcp-dev",
"uv",
"run",
"openstudio_mcp_server/server.py"
],
"command": "docker"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
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.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
uvx 'openstudio' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked openstudio against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in other
Pi Coding Agent extension (CLI-first) — routes bash/read/grep/find/ls through lean-ctx CLI for strong token savings. Optional MCP bridge can register advanced tools.
Autonomous spec-to-product coding-agent CLI with an MCP server exposing 34 tools over stdio.
97% token reduction for AI coding sessions — zero deps, 21 languages, MCP server
App framework, testing framework, and inspector for MCP Apps.
MCP Security Weekly
Get CVE alerts and security updates for Openstudio Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
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 detailsapply_view_model - Generate interactive HTML visualization (geometry, HVAC, zones, materials)apply_space_type_and_construction_set_wizard - Apply ASHRAE 90.1 building templateslist_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 informationlist_materials - List all materials with thermal propertieslist_air_loops - List all air loop HVAC systemslist_people_loads - List occupancy loadslist_lighting_loads - List lighting power densitieslist_electric_equipment - List equipment loadslist_schedule_rulesets - List all schedule rulesetsget_server_info - Get server configuration and statusget_current_model_status - Check currently loaded modelgit clone https://github.com/roruizf/openstudio-mcp-server.git
cd openstudio-mcp-server
docker build -t openstudio-mcp-dev -f .devcontainer/Dockerfile .devcontainer
This builds a container with:
Verify Build:
docker images | grep openstudio-mcp-dev
Edit your Claude Desktop configuration file:
Windows: %APPDATA%\Claude\claude_desktop_config.json
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Add this configuration (Windows example):
{
"mcpServers": {
"openstudio": {
"command": "docker",
"args": [
... [View full README on GitHub](https://github.com/roruizf/openstudio-mcp-server#readme)