1.1.0npm · @ahmetbarut/jira-mcp-server · current release
Observed 2026-08-22T09:55:51.959Z using mcpSecurity-inventory. Status: succeeded. Negotiated protocol: 2025-06-18.
{
"tools": {}
}| Tool | Category | Annotations | Risk |
|---|---|---|---|
add_comment_to_issueAdd a comment to a specific Jira issueInput schema{
"type": "object",
"properties": {
"issueIdOrKey": {
"type": "string",
"description": "The issue key or ID to add a comment to"
},
"body": {
"type": "string",
"description": "The comment text"
}
},
"required": [
"issueIdOrKey",
"body"
]
} | — | — · — | — |
get_boardsGet all available Jira scrum boardsInput schema{
"type": "object",
"properties": {}
} | — | — · — | — |
get_current_user_infoGet current authenticated user information including login, email, timezoneInput schema{
"type": "object",
"properties": {}
} | — | — · — | — |
get_issue_detailGet detailed information about a specific Jira issueInput schema{
"type": "object",
"properties": {
"issueIdOrKey": {
"type": "string",
"description": "The issue key (e.g., PROJ-123) or ID to get details for"
}
},
"required": [
"issueIdOrKey"
]
} | — | — · — | — |
get_issuesGet current user's tasks from a specific Jira boardInput schema{
"type": "object",
"properties": {
"boardId": {
"type": "string",
"description": "Board ID to get your tasks from"
}
},
"required": [
"boardId"
]
} | — | — · — | — |
get_server_infoGet Jira server information including current server timeInput schema{
"type": "object",
"properties": {}
} | — | — · — | — |
search_userSearch for a user by login name or emailInput schema{
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Username, email, or display name to search for"
}
},
"required": [
"query"
]
} | — | — · — | — |