0.15 - fix indentation
CICD / Explore-Gitea-Actions (push) Successful in 37s
Details
CICD / Explore-Gitea-Actions (push) Successful in 37s
Details
This commit is contained in:
parent
c123df9b15
commit
ab97ce1a0b
|
@ -20,4 +20,4 @@ RUN pip install --no-cache-dir -r requirements.txt
|
|||
COPY . .
|
||||
|
||||
CMD ["python", "main.py"]
|
||||
#harbor.freshbrewed.science/library/vikunjamcp:0.14
|
||||
#harbor.freshbrewed.science/library/vikunjamcp:0.15
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "vikunja",
|
||||
"version": "1.0.14",
|
||||
"version": "1.0.15",
|
||||
"mcpServers": {
|
||||
"nodeServer": {
|
||||
"command": "docker",
|
||||
|
@ -14,7 +14,7 @@
|
|||
"VIKUNJA_USERNAME",
|
||||
"-e",
|
||||
"VIKUNJA_PASSWORD",
|
||||
"harbor.freshbrewed.science/library/vikunjamcp:0.14"
|
||||
"harbor.freshbrewed.science/library/vikunjamcp:0.15"
|
||||
],
|
||||
"env": {
|
||||
"VIKUNJA_URL": "$VIKUNJA_URL",
|
||||
|
|
1
main.py
1
main.py
|
@ -216,6 +216,7 @@ def comment_task(task_id: int, description: str):
|
|||
except requests.exceptions.RequestException as e:
|
||||
logger.exception("update_comment: request failed for task_id=%s, comment_id=%s", task_id, comment_id)
|
||||
return f"Error updating comment for task: {e}"
|
||||
|
||||
@mcp.tool()
|
||||
def lookup_project():
|
||||
"""
|
||||
|
|
Loading…
Reference in New Issue