From 3813bb4e76c12c338fd7288ef316c0ffe78546b0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 29 Apr 2026 13:16:33 +0000 Subject: [PATCH] build(deps): update mcp requirement from >=1.0.0 to >=1.27.0 Updates the requirements on [mcp](https://github.com/modelcontextprotocol/python-sdk) to permit the latest version. - [Release notes](https://github.com/modelcontextprotocol/python-sdk/releases) - [Changelog](https://github.com/modelcontextprotocol/python-sdk/blob/main/RELEASE.md) - [Commits](https://github.com/modelcontextprotocol/python-sdk/compare/v1.0.0...v1.27.0) --- updated-dependencies: - dependency-name: mcp dependency-version: 1.27.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- mcp/requirements.txt | 2 +- pyproject.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/mcp/requirements.txt b/mcp/requirements.txt index eb2c175..ecc3ec1 100644 --- a/mcp/requirements.txt +++ b/mcp/requirements.txt @@ -1,4 +1,4 @@ # MCP server dependencies — supplements the root requirements.txt. # Install both to use the AI assistant integration: # pip install -r requirements.txt -r mcp/requirements.txt -mcp[cli]>=1.0.0 +mcp[cli]>=1.27.0 diff --git a/pyproject.toml b/pyproject.toml index 7767d18..213baea 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,7 +20,7 @@ dependencies = [ [project.optional-dependencies] # AI assistant integration via MCP servers (Claude Code, Claude Desktop, kiro-cli) -mcp = ["mcp[cli]>=1.0.0"] +mcp = ["mcp[cli]>=1.27.0"] # NLP-enhanced ticket classification (spaCy dependency parsing, NER) nlp = [ @@ -35,7 +35,7 @@ offline-enrichment = [ # Everything all = [ - "mcp[cli]>=1.0.0", + "mcp[cli]>=1.27.0", "spacy>=3.7", "pyasn>=1.6.2", ]