From 44697dd389c4cb8ee27dde4f0013224d85bcac6c Mon Sep 17 00:00:00 2001 From: Aymen Hammouda Date: Mon, 1 Jun 2026 20:34:08 +0200 Subject: [PATCH] =?UTF-8?q?chore(release):=20v0.3.1=20=E2=80=94=20checked-?= =?UTF-8?q?in=20.mcp.json=20project=20config?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add a project-scoped .mcp.json that starts the published server with `uvx python-docs-mcp-server`, document the Claude Code project config in the README, and bump package + MCP Registry metadata to 0.3.1. Co-Authored-By: Claude Opus 4.8 (1M context) --- .mcp.json | 9 +++++++++ CHANGELOG.md | 12 ++++++++++++ README.md | 20 ++++++++++++++++++++ pyproject.toml | 2 +- server.json | 4 ++-- uv.lock | 2 +- 6 files changed, 45 insertions(+), 4 deletions(-) create mode 100644 .mcp.json diff --git a/.mcp.json b/.mcp.json new file mode 100644 index 0000000..99d7a31 --- /dev/null +++ b/.mcp.json @@ -0,0 +1,9 @@ +{ + "mcpServers": { + "python-docs": { + "type": "stdio", + "command": "uvx", + "args": ["python-docs-mcp-server"] + } + } +} diff --git a/CHANGELOG.md b/CHANGELOG.md index 21457c0..cbebc65 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,18 @@ All notable changes to `python-docs-mcp-server` are documented here. Format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/); this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.3.1] — 2026-06-01 + +### Added + +- Added a checked-in `.mcp.json` project configuration for MCP clients that + support project-scoped server config. It starts the published server with + `uvx python-docs-mcp-server`. + +### Changed + +- Bumped package and MCP Registry metadata to `0.3.1`. + ## [0.3.0] — 2026-05-31 ### Added diff --git a/README.md b/README.md index 354624c..b936028 100644 --- a/README.md +++ b/README.md @@ -111,6 +111,26 @@ cache. It can take several minutes. ## Configure your MCP client +### Claude Code + +This repository includes a project-scoped `.mcp.json` for clients that support +checked-in MCP server configuration. It points at the published package: + +```json +{ + "mcpServers": { + "python-docs": { + "type": "stdio", + "command": "uvx", + "args": ["python-docs-mcp-server"] + } + } +} +``` + +Build the local documentation index with the first-run command above before +expecting docs queries to return corpus-backed results. + ### Claude Desktop Add this to your Claude Desktop configuration file: diff --git a/pyproject.toml b/pyproject.toml index 041d667..4662583 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "python-docs-mcp-server" -version = "0.3.0" +version = "0.3.1" description = "The canonical Python stdlib oracle for AI coding agents — exact symbols, exact sections, exact versions, offline, always free, always MIT, token-frugal." readme = "README.md" license = "MIT" diff --git a/server.json b/server.json index 8624649..61e1947 100644 --- a/server.json +++ b/server.json @@ -8,13 +8,13 @@ "url": "https://github.com/ayhammouda/python-docs-mcp-server", "source": "github" }, - "version": "0.3.0", + "version": "0.3.1", "packages": [ { "registryType": "pypi", "registryBaseUrl": "https://pypi.org", "identifier": "python-docs-mcp-server", - "version": "0.3.0", + "version": "0.3.1", "runtimeHint": "uvx", "transport": { "type": "stdio" diff --git a/uv.lock b/uv.lock index 8f29138..5a2a031 100644 --- a/uv.lock +++ b/uv.lock @@ -541,7 +541,7 @@ wheels = [ [[package]] name = "python-docs-mcp-server" -version = "0.3.0" +version = "0.3.1" source = { editable = "." } dependencies = [ { name = "beautifulsoup4" },