backlog-mcp 1.0.5__tar.gz → 1.0.6__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {backlog_mcp-1.0.5 → backlog_mcp-1.0.6}/PKG-INFO +1 -1
- {backlog_mcp-1.0.5 → backlog_mcp-1.0.6}/app/tools/update_issue_description.py +4 -1
- {backlog_mcp-1.0.5 → backlog_mcp-1.0.6}/pyproject.toml +1 -1
- {backlog_mcp-1.0.5 → backlog_mcp-1.0.6}/uv.lock +1 -1
- {backlog_mcp-1.0.5 → backlog_mcp-1.0.6}/.env.example +0 -0
- {backlog_mcp-1.0.5 → backlog_mcp-1.0.6}/.gitignore +0 -0
- {backlog_mcp-1.0.5 → backlog_mcp-1.0.6}/.mise.toml +0 -0
- {backlog_mcp-1.0.5 → backlog_mcp-1.0.6}/README.md +0 -0
- {backlog_mcp-1.0.5 → backlog_mcp-1.0.6}/app/__init__.py +0 -0
- {backlog_mcp-1.0.5 → backlog_mcp-1.0.6}/app/constants/__init__.py +0 -0
- {backlog_mcp-1.0.5 → backlog_mcp-1.0.6}/app/constants/constants.py +0 -0
- {backlog_mcp-1.0.5 → backlog_mcp-1.0.6}/app/core/__init__.py +0 -0
- {backlog_mcp-1.0.5 → backlog_mcp-1.0.6}/app/logging_config.py +0 -0
- {backlog_mcp-1.0.5 → backlog_mcp-1.0.6}/app/main.py +0 -0
- {backlog_mcp-1.0.5 → backlog_mcp-1.0.6}/app/models/__init__.py +0 -0
- {backlog_mcp-1.0.5 → backlog_mcp-1.0.6}/app/models/models.py +0 -0
- {backlog_mcp-1.0.5 → backlog_mcp-1.0.6}/app/server_settings.py +0 -0
- {backlog_mcp-1.0.5 → backlog_mcp-1.0.6}/app/tools/__init__.py +0 -0
- {backlog_mcp-1.0.5 → backlog_mcp-1.0.6}/app/tools/get_issue_details.py +0 -0
- {backlog_mcp-1.0.5 → backlog_mcp-1.0.6}/app/tools/get_user_issue_list.py +0 -0
- {backlog_mcp-1.0.5 → backlog_mcp-1.0.6}/app/utils/__init__.py +0 -0
- {backlog_mcp-1.0.5 → backlog_mcp-1.0.6}/app/utils/di.py +0 -0
- {backlog_mcp-1.0.5 → backlog_mcp-1.0.6}/app/utils/ultils.py +0 -0
- {backlog_mcp-1.0.5 → backlog_mcp-1.0.6}/docs/mcp-installer-template.md +0 -0
- {backlog_mcp-1.0.5 → backlog_mcp-1.0.6}/scripts/install-backlog-mcp.sh +0 -0
|
@@ -7,7 +7,10 @@ async def update_issue_description(
|
|
|
7
7
|
description: str,
|
|
8
8
|
):
|
|
9
9
|
"""
|
|
10
|
-
|
|
10
|
+
Updates the description of a Backlog issue.
|
|
11
|
+
|
|
12
|
+
IMPORTANT: Call this tool directly when all parameters are provided.
|
|
13
|
+
Do NOT call other tools to check issue existence beforehand.
|
|
11
14
|
|
|
12
15
|
Args:
|
|
13
16
|
issue_key (str): The key or ID of the Backlog issue to update.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "backlog-mcp"
|
|
3
|
-
version = "1.0.
|
|
3
|
+
version = "1.0.6"
|
|
4
4
|
description = "A Model Context Protocol (MCP) server for Backlog project management integration"
|
|
5
5
|
authors = [{name = "BaoNguyen", email = "baonguyen@teqnological.asia"}]
|
|
6
6
|
readme = "README.md"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|