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
2 changes: 2 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
- The project is organized into dedicated `loader`, `server`, and `common` packages under `mcp_plex/`.
- Package-specific architectural notes live alongside the code in `mcp_plex/loader/AGENTS.md`, `mcp_plex/server/AGENTS.md`, and `mcp_plex/common/AGENTS.md`.
- Update this file when repo-wide conventions or folder-level guidelines change.
- Review the Architecture Decision Records in `docs/adr/` before implementing changes that affect system design, and document
new architectural decisions with an ADR.

## User Queries
The project should handle natural-language searches and recommendations such as:
Expand Down
2 changes: 1 addition & 1 deletion docker/pyproject.deps.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "mcp-plex"
version = "0.26.57"
version = "0.26.58"
requires-python = ">=3.11,<3.13"
dependencies = [
"fastmcp>=2.11.2",
Expand Down
26 changes: 26 additions & 0 deletions docs/adr/0001-adopt-architecture-decision-records.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# ADR 0001: Adopt Architecture Decision Records

## Status
Accepted

## Context
The project has grown to include multiple interacting packages and components. Without a shared process for capturing
design rationale, contributors risk duplicating past discussions or introducing changes that conflict with existing
architecture decisions.

## Decision
We will maintain Architecture Decision Records (ADRs) under `docs/adr/`. Each ADR will document the problem being
addressed, the selected solution, the rationale behind that solution, and any implications for future work. Any change
that affects application architecture, cross-cutting concerns, or long-lived design choices must reference an ADR.

## Consequences
- Contributors must review existing ADRs before proposing architectural changes or implementing features that interact
with the affected areas.
- New architectural decisions require a new ADR that follows this template.
- Pull requests introducing architectural changes must link to the relevant ADR(s) in their description.
- The AGENTS instructions reference the ADR process so that future agents stay aligned with the documented design.

## Implementation Notes
- Store ADR files using the naming convention `NNNN-title.md` where `NNNN` is a zero-padded sequence number.
- Keep ADRs in chronological order and avoid renaming files to preserve history.
- Use Markdown headings: Status, Context, Decision, Consequences, and Implementation Notes.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "mcp-plex"
version = "0.26.57"
version = "0.26.58"

description = "Plex-Oriented Model Context Protocol Server"
requires-python = ">=3.11,<3.13"
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

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