Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,39 @@ All notable changes to `devhelm-mcp-server` are documented here.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.0.0] — 2026-05-06

First GA release. Cut alongside the `1.0.0` GA of the `devhelm` Python
SDK, the `devhelm` CLI, and the `@devhelm/sdk` JS/TS SDK. The schema
and tool surface that `0.8.3` shipped is the GA contract — no
behavioral changes from `0.8.3`, only the version bump and the SDK
floor change below.

### Changed

- Bump `devhelm` Python SDK floor to `>=1.0.0`. Aligns with the GA
release of the SDK; future patch/minor SDK bumps will be picked up
automatically without an explicit floor change here.

### Compatibility

- All tool input schemas, tool names, and response shapes are
unchanged from `0.8.3`. Existing clients keep working without
modification.

## [0.8.3] — 2026-05-06

### Changed

- Rewrite `initialize.instructions` to point at transport-layer auth
(`Authorization: Bearer ...` for hosted, `DEVHELM_API_TOKEN` env for
stdio) and explicitly note that tool schemas no longer accept
`api_token` arguments. The previous wording ("All operations require
a valid DevHelm API token") contradicted the 0.7.0 schema change and
caused LLMs to attempt to thread tokens into tool args.
- Add `CHANGELOG.md` retroactively covering 0.6.0 → 0.8.x. Going
forward, every release lands with a corresponding stanza.

## [0.8.2] — 2026-05-06

### Changed
Expand Down
13 changes: 8 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,14 @@ classifiers = [
]

dependencies = [
# Floor bumped to 0.7.2: required for `managedBy` field on resource DTOs
# and for the new monitor validation contract (frequencySeconds bounds,
# dynamic region whitelist). Older devhelm versions raise Pydantic
# `extra_forbidden` errors when the API returns `managedBy`.
"devhelm>=0.7.2",
# Floor bumped to 1.0.0: aligns with the GA release of the Python SDK
# cut alongside this server's 1.0.0. The 1.0.0 SDK includes every
# contract the server currently relies on (`managedBy` on resource
# DTOs, the monitor validation contract — frequencySeconds bounds,
# dynamic region whitelist) and commits to semver going forward, so
# `>=1.0.0` lets us pull in compatible patch/minor bumps without
# explicit floor bumps each time.
"devhelm>=1.0.0",
"fastmcp>=2.0.0",
]

Expand Down
10 changes: 5 additions & 5 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading