epwforge-mcp 0.0.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,12 @@
1
+ node_modules/
2
+ *.log
3
+ .DS_Store
4
+ dist/
5
+ build/
6
+ *.egg-info/
7
+ __pycache__/
8
+ *.pyc
9
+ .venv/
10
+ venv/
11
+ .env
12
+ .env.local
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Guzzlabs
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,97 @@
1
+ Metadata-Version: 2.4
2
+ Name: epwforge-mcp
3
+ Version: 0.0.1
4
+ Summary: MCP server for EPWForge — generate, morph, and download EPW weather files for EnergyPlus, OpenStudio, IES VE, and eQUEST. TMYx, AMY, CMIP6 future-climate scenarios, and wildfire smoke overlays for AI agents.
5
+ Project-URL: Homepage, https://epwforge.com
6
+ Project-URL: Repository, https://github.com/guzz-labs/epwforge-mcp
7
+ Project-URL: Issues, https://github.com/guzz-labs/epwforge-mcp/issues
8
+ Author-email: Guzzlabs <tuna@guzzlabs.com>
9
+ License: MIT
10
+ License-File: LICENSE
11
+ Keywords: ai-agent,amy,building-energy-simulation,claude,climate-adaptation,climate-deltas,cmip6,energy-modeling,energyplus,epw,epwforge,equest,era5,future-weather,guzzlabs,ies-ve,mcp,mcp-server,model-context-protocol,openstudio,tmy,tmyx,weather-file,weather-morphing,wildfire-smoke
12
+ Classifier: Development Status :: 1 - Planning
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: Intended Audience :: Science/Research
15
+ Classifier: License :: OSI Approved :: MIT License
16
+ Classifier: Operating System :: OS Independent
17
+ Classifier: Programming Language :: Python :: 3
18
+ Classifier: Programming Language :: Python :: 3.10
19
+ Classifier: Programming Language :: Python :: 3.11
20
+ Classifier: Programming Language :: Python :: 3.12
21
+ Classifier: Topic :: Scientific/Engineering :: Atmospheric Science
22
+ Classifier: Topic :: Scientific/Engineering :: Physics
23
+ Requires-Python: >=3.10
24
+ Description-Content-Type: text/markdown
25
+
26
+ # epwforge-mcp
27
+
28
+ > MCP server for [EPWForge](https://epwforge.com) — give Claude, Cursor, and other AI agents the ability to generate, morph, and download weather files for building energy simulation.
29
+
30
+ **Status:** Reserved name. The public MCP server is in active development. Star this repo or visit [epwforge.com](https://epwforge.com) for launch updates.
31
+
32
+ ## What is EPWForge?
33
+
34
+ EPWForge generates, morphs, and serves weather files (`.epw`, `.tmy`, `.amy`) for building energy simulation tools — EnergyPlus, OpenStudio, IES VE, eQUEST, and any workflow that consumes EPW. The platform supports:
35
+
36
+ - **TMYx generation anywhere** — typical meteorological years synthesized from ERA5 reanalysis for any global lat/lon, not just airport stations
37
+ - **Climate morphing** — apply CMIP6 future-scenario deltas (SSP1-2.6, SSP2-4.5, SSP5-8.5) to baseline weather files for resilience and adaptation studies
38
+ - **AMY (Actual Meteorological Year)** — historical hourly weather for hindcasting, calibration, and post-occupancy analysis
39
+ - **Wildfire smoke overlays** — CAMS aerosol optical depth integrated into solar radiation channels
40
+ - **Programmatic API + UI** — pull files via REST or browse the globe interface at [epwforge.com](https://epwforge.com)
41
+
42
+ ## What this MCP does
43
+
44
+ This package will expose EPWForge as Model Context Protocol tools so AI agents can request, generate, and morph weather files directly. Planned tools include:
45
+
46
+ | Tool | Purpose |
47
+ |---|---|
48
+ | `search_locations` | Find cities or coordinates with available data |
49
+ | `get_location_metadata` | Climate zone, available years, data sources |
50
+ | `generate_tmyx` | Synthesize a typical meteorological year for any lat/lon |
51
+ | `get_amy` | Pull an actual meteorological year for a specific year |
52
+ | `morph_to_future` | Apply CMIP6 climate deltas to a baseline file |
53
+ | `apply_smoke_overlay` | Layer wildfire smoke (AOD) onto solar channels |
54
+ | `download_epw` | Retrieve a generated file as bytes or a signed URL |
55
+ | `get_quota` | Check remaining tier allowance |
56
+
57
+ Authentication is by EPWForge API key (set via the `EPWFORGE_API_KEY` environment variable) — the same key that authorizes the REST API.
58
+
59
+ ## Install (placeholder)
60
+
61
+ ```bash
62
+ # npm
63
+ npm install -g epwforge-mcp
64
+
65
+ # pip
66
+ pip install epwforge-mcp
67
+ ```
68
+
69
+ These commands install the stub today. The functional MCP server will ship on the same package names.
70
+
71
+ ## Connecting to Claude
72
+
73
+ Once published, configure Claude Desktop or Claude Code by adding to your MCP config:
74
+
75
+ ```json
76
+ {
77
+ "mcpServers": {
78
+ "epwforge": {
79
+ "command": "npx",
80
+ "args": ["epwforge-mcp"],
81
+ "env": { "EPWFORGE_API_KEY": "your-key-here" }
82
+ }
83
+ }
84
+ }
85
+ ```
86
+
87
+ Get your API key at [epwforge.com](https://epwforge.com).
88
+
89
+ ## Links
90
+
91
+ - **Website:** [epwforge.com](https://epwforge.com)
92
+ - **Maker:** [Guzzlabs](https://guzzlabs.com)
93
+ - **Issues:** [github.com/guzz-labs/epwforge-mcp/issues](https://github.com/guzz-labs/epwforge-mcp/issues)
94
+
95
+ ## License
96
+
97
+ MIT
@@ -0,0 +1,72 @@
1
+ # epwforge-mcp
2
+
3
+ > MCP server for [EPWForge](https://epwforge.com) — give Claude, Cursor, and other AI agents the ability to generate, morph, and download weather files for building energy simulation.
4
+
5
+ **Status:** Reserved name. The public MCP server is in active development. Star this repo or visit [epwforge.com](https://epwforge.com) for launch updates.
6
+
7
+ ## What is EPWForge?
8
+
9
+ EPWForge generates, morphs, and serves weather files (`.epw`, `.tmy`, `.amy`) for building energy simulation tools — EnergyPlus, OpenStudio, IES VE, eQUEST, and any workflow that consumes EPW. The platform supports:
10
+
11
+ - **TMYx generation anywhere** — typical meteorological years synthesized from ERA5 reanalysis for any global lat/lon, not just airport stations
12
+ - **Climate morphing** — apply CMIP6 future-scenario deltas (SSP1-2.6, SSP2-4.5, SSP5-8.5) to baseline weather files for resilience and adaptation studies
13
+ - **AMY (Actual Meteorological Year)** — historical hourly weather for hindcasting, calibration, and post-occupancy analysis
14
+ - **Wildfire smoke overlays** — CAMS aerosol optical depth integrated into solar radiation channels
15
+ - **Programmatic API + UI** — pull files via REST or browse the globe interface at [epwforge.com](https://epwforge.com)
16
+
17
+ ## What this MCP does
18
+
19
+ This package will expose EPWForge as Model Context Protocol tools so AI agents can request, generate, and morph weather files directly. Planned tools include:
20
+
21
+ | Tool | Purpose |
22
+ |---|---|
23
+ | `search_locations` | Find cities or coordinates with available data |
24
+ | `get_location_metadata` | Climate zone, available years, data sources |
25
+ | `generate_tmyx` | Synthesize a typical meteorological year for any lat/lon |
26
+ | `get_amy` | Pull an actual meteorological year for a specific year |
27
+ | `morph_to_future` | Apply CMIP6 climate deltas to a baseline file |
28
+ | `apply_smoke_overlay` | Layer wildfire smoke (AOD) onto solar channels |
29
+ | `download_epw` | Retrieve a generated file as bytes or a signed URL |
30
+ | `get_quota` | Check remaining tier allowance |
31
+
32
+ Authentication is by EPWForge API key (set via the `EPWFORGE_API_KEY` environment variable) — the same key that authorizes the REST API.
33
+
34
+ ## Install (placeholder)
35
+
36
+ ```bash
37
+ # npm
38
+ npm install -g epwforge-mcp
39
+
40
+ # pip
41
+ pip install epwforge-mcp
42
+ ```
43
+
44
+ These commands install the stub today. The functional MCP server will ship on the same package names.
45
+
46
+ ## Connecting to Claude
47
+
48
+ Once published, configure Claude Desktop or Claude Code by adding to your MCP config:
49
+
50
+ ```json
51
+ {
52
+ "mcpServers": {
53
+ "epwforge": {
54
+ "command": "npx",
55
+ "args": ["epwforge-mcp"],
56
+ "env": { "EPWFORGE_API_KEY": "your-key-here" }
57
+ }
58
+ }
59
+ }
60
+ ```
61
+
62
+ Get your API key at [epwforge.com](https://epwforge.com).
63
+
64
+ ## Links
65
+
66
+ - **Website:** [epwforge.com](https://epwforge.com)
67
+ - **Maker:** [Guzzlabs](https://guzzlabs.com)
68
+ - **Issues:** [github.com/guzz-labs/epwforge-mcp/issues](https://github.com/guzz-labs/epwforge-mcp/issues)
69
+
70
+ ## License
71
+
72
+ MIT
@@ -0,0 +1,65 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "epwforge-mcp"
7
+ version = "0.0.1"
8
+ description = "MCP server for EPWForge — generate, morph, and download EPW weather files for EnergyPlus, OpenStudio, IES VE, and eQUEST. TMYx, AMY, CMIP6 future-climate scenarios, and wildfire smoke overlays for AI agents."
9
+ readme = "README.md"
10
+ license = { text = "MIT" }
11
+ requires-python = ">=3.10"
12
+ authors = [
13
+ { name = "Guzzlabs", email = "tuna@guzzlabs.com" }
14
+ ]
15
+ keywords = [
16
+ "mcp",
17
+ "mcp-server",
18
+ "model-context-protocol",
19
+ "claude",
20
+ "ai-agent",
21
+ "epw",
22
+ "weather-file",
23
+ "energyplus",
24
+ "openstudio",
25
+ "ies-ve",
26
+ "equest",
27
+ "tmy",
28
+ "tmyx",
29
+ "amy",
30
+ "weather-morphing",
31
+ "climate-deltas",
32
+ "future-weather",
33
+ "cmip6",
34
+ "era5",
35
+ "building-energy-simulation",
36
+ "energy-modeling",
37
+ "climate-adaptation",
38
+ "wildfire-smoke",
39
+ "epwforge",
40
+ "guzzlabs",
41
+ ]
42
+ classifiers = [
43
+ "Development Status :: 1 - Planning",
44
+ "Intended Audience :: Science/Research",
45
+ "Intended Audience :: Developers",
46
+ "License :: OSI Approved :: MIT License",
47
+ "Operating System :: OS Independent",
48
+ "Programming Language :: Python :: 3",
49
+ "Programming Language :: Python :: 3.10",
50
+ "Programming Language :: Python :: 3.11",
51
+ "Programming Language :: Python :: 3.12",
52
+ "Topic :: Scientific/Engineering :: Atmospheric Science",
53
+ "Topic :: Scientific/Engineering :: Physics",
54
+ ]
55
+
56
+ [project.urls]
57
+ Homepage = "https://epwforge.com"
58
+ Repository = "https://github.com/guzz-labs/epwforge-mcp"
59
+ Issues = "https://github.com/guzz-labs/epwforge-mcp/issues"
60
+
61
+ [project.scripts]
62
+ epwforge-mcp = "epwforge_mcp:main"
63
+
64
+ [tool.hatch.build.targets.wheel]
65
+ packages = ["src/epwforge_mcp"]
@@ -0,0 +1,18 @@
1
+ """epwforge-mcp: MCP server for EPWForge weather file generation and morphing.
2
+
3
+ This package name is reserved. The functional MCP server is in development.
4
+ Visit https://epwforge.com for launch updates.
5
+ """
6
+
7
+ __version__ = "0.0.1"
8
+
9
+
10
+ def main() -> None:
11
+ import sys
12
+ print(
13
+ "epwforge-mcp: this package name is reserved. "
14
+ "The functional MCP server is in development.\n"
15
+ "Visit https://epwforge.com for launch updates.",
16
+ file=sys.stderr,
17
+ )
18
+ sys.exit(0)