The public home for the Smarter Weather developer platform: SDKs,
documentation, example apps, the @smarterweather/mcp-weather and
@smarterweather/mcp-onboarding packages, agent skills, and the OpenAPI
specification for api.smarterweather.com.
Preview. The Smarter Weather REST API and hosted MCP server are not yet generally available. This repository exists to publish the developer-facing contracts, SDKs, and integration material as they land. Expect rapid iteration on the OpenAPI surface, the dashboard, and the MCP tool catalog through the launch sequence outlined in Roadmap below. Production SLAs and breaking-change policies start at general availability.
This repo will fill in over time. At bootstrap it contains governance only. The intended scope is:
- OpenAPI specification (
openapi.yaml) for the public REST API athttps://api.smarterweather.com. Auto-synced from the canonical source on change. @smarterweather/mcp-weather-- npm package source for the stdio bridge that connects MCP clients (Cursor, Claude Desktop, Claude Code, etc.) to the hosted MCP endpoint athttps://mcp.smarterweather.com/mcp. The bridge attaches your API key fromSMARTERWEATHER_API_KEYand proxies every JSON-RPC message; all weather logic runs server-side.@smarterweather/mcp-onboarding-- npm package source for the stdio bridge to the developer-onboarding MCP server athttps://developers.smarterweather.com/mcp. Provides agent-driven self-service account creation, API key provisioning, and SDK setup walkthroughs. Auth via OAuth (browser callback).- Client SDKs -- TypeScript and Python first; Go to follow.
- Examples and cookbooks -- runnable apps, agent integrations, and end-to-end recipes.
- Agent skills --
.cursor/skills/use-smarterweather-api/and.claude/CLAUDE.mdcontent that teaches AI coding agents how to integrate the Smarter Weather APIs. Copy them to the same paths in your own repo to install. - Documentation -- guides under
docs/that complement the developer portal at https://smarterweather.com/developers. See the docs index for the current map.
What does not live here: the Smarter Weather core service, ingestion pipeline, or any internal infrastructure. Those remain in a separate private repository.
The hosted developer dashboard at https://smarterweather.com/developers is the source of truth for account creation, API key minting, plan management, and usage. Once you have a key, you can:
# REST API
curl -H "X-API-Key: $SMARTERWEATHER_API_KEY" \
"https://api.smarterweather.com/v1/weather?latitude=41.88&longitude=-87.63"# Weather MCP server (npm package; preview placeholder today)
npx -y @smarterweather/mcp-weather@previewThe full quickstart with language-specific snippets lives at https://smarterweather.com/developers/quickstart.
- Bug reports and feature requests -- file an issue on this repo using the templates in the issue chooser.
- API contract questions -- file an issue with the "API contract question" template; these route to the team that owns the public surface.
- General "how do I do X?" questions -- start a thread in Discussions. We prefer Discussions over chat platforms because answers stay searchable.
- Account, billing, or commercial inquiries -- email alex@smarterweather.com or use the contact page.
- Security issues -- see SECURITY.md. Please do not open public issues for security reports.
Smarter Weather is building the developer platform in phases; this repo publishes artifacts as each phase ships.
| Phase | Surface | Target |
|---|---|---|
| 1a | Developer dashboard, API key CRUD, billing, monitoring scaffolding | shipping |
| 1b | This public repository (governance, SDK scaffolding, OpenAPI sync workflow) | in progress |
| 2 | Public REST API (sw-api) at api.smarterweather.com with usage-based billing |
next |
| 2b | First-party migration of the Smarter Weather web and iOS apps onto the public API | follows Phase 2 |
| 3 | Public MCP server (sw-mcp) at mcp.smarterweather.com/mcp + @smarterweather/mcp-weather |
follows Phase 2 |
| 3b | First-party wx-chat migration onto the public MCP |
follows Phase 3 |
| 4 | Meta MCP server (sw-onboarding) for agent-driven self-service onboarding + @smarterweather/mcp-onboarding |
follows Phase 3 |
| 5 | SDKs, expanded examples, registry distribution, community growth | ongoing |
The roadmap is published for transparency, not as a commitment. Dates are intentionally omitted -- watch this repository for releases.
External contributions are welcome on a tiered basis (typo and small SDK fixes are fast-tracked; new features start with an issue). The OpenAPI specification is read-only -- contract changes route through issues.
See CONTRIBUTING.md for the full posture and the Code of Conduct for community expectations.
- Code -- SDKs, examples, the
@smarterweather/mcp-weatherand@smarterweather/mcp-onboardingpackage sources, and any agent skills or scaffolding are licensed under the MIT License. - Documentation and prose -- this README, anything under
docs/, andopenapi.yaml(when present) are licensed under Creative Commons Attribution 4.0 International.
Where any file's intended license is ambiguous (for example, a tutorial that mixes prose and code samples), assume MIT for the code blocks and CC BY 4.0 for the surrounding prose.
The Smarter Weather hosted APIs and services themselves are governed by separate Terms of Service and Developer Terms at https://smarterweather.com/terms and https://smarterweather.com/developers/terms. This repository contains client-side and documentation artifacts only; access to the hosted APIs requires a separate agreement.
Smarter Weather builds on data and software from many providers. See ATTRIBUTION.md for the canonical acknowledgements list.