Issue while using the tool "update_issue" #598
yashsrivastava0123
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
@sooperset I am running this mcp as a docker , CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
17c3ccc660d2 ghcr.io/sooperset/mcp-atlassian:latest "mcp-atlassian --tra…" 14 seconds ago Up 13 seconds 0.0.0.0:3000->3000/tcp, :::3000->3000/tcp wonderful_chebyshev , and now when I am testing it in postman as http://localhost:3000/api/mcp with request body {
"tool": "jira_update_issue",
"args": {
"issue_key": "PA-14",
"fields": {
"priority": "High",
"assignee": "[email protected]",
"labels": ["urgent", "backend"],
"description": "Updated the issue with new requirements and tagged as urgent."
}
},
"source": "atlassian"
}, ( Calling atlassian tool: jira_update_issue { issue_key: 'PA-14',
fields:
{ priority: 'High',
assignee: '[email protected]',
labels: [ 'urgent', 'backend' ],
description: 'Updated the issue with new requirements and tagged as urgent.' } }
✅ atlassian tool result: {
"content": [
{
"type": "text",
"text": "Error calling tool 'update_issue'"
}
],
"isError": true
}
) I am getting {
"ok": true,
"result": {
"content": [
{
"type": "text",
"text": "Error calling tool 'update_issue'"
}
],
"isError": true
}
}
same for other tools is working fine , for example,for {
"tool": "jira_add_comment",
"args": {
"issue_key": "PA-14",
"comment": "This is a test comment added via MCP."
},
"source": "atlassian"
}
getting {
"ok": true,
"result": {
"content": [
{
"type": "text",
"text": "{\n "id": "10165",\n "body": "This is a test comment added via MCP.",\n "created": "2025-07-05 21:16:58.732000+05:30",\n "author": "Yash Srivastava"\n}"
}
],
"isError": false
}
}, can u please check once
Beta Was this translation helpful? Give feedback.
All reactions