11b49000bba659a08fa8d12aca3d12a77ba08ff7source_git · mikeatpinnacle/jira-worklog-mcp · current release
Observed 2026-08-25T19:57:43.145Z using mcpSecurity-inventory. Status: succeeded. Negotiated protocol: 2025-06-18.
{
"tools": {
"listChanged": true
}
}| Tool | Category | Annotations | Risk |
|---|---|---|---|
add_worklogLog work against a Jira issue (POST worklog). issue_key is the ticket (e.g. LEGLINK-142), time_spent_seconds is the duration, started defaults to now (RFC3339; normalized to Jira's required format), and comment is optional. Jira records time at minute granularity (minimum 60s).Input schema{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"issue_key": {
"type": "string",
"description": "Jira issue key, e.g. LEGLINK-142."
},
"time_spent_seconds": {
"type": "integer",
"exclusiveMinimum": 0,
"maximum": 9007199254740991,
"description": "Worklog duration in seconds."
},
"started": {
"description": "When the work started, RFC3339. Default: now.",
"type": "string"
},
"comment": {
"description": "Optional worklog comment (plain text; stored as ADF).",
"type": "string"
}
},
"required": [
"issue_key",
"time_spent_seconds"
]
}Annotations{
"readOnlyHint": false,
"destructiveHint": false,
"idempotentHint": false,
"openWorldHint": true
} | — | Writes · Non-destructive | — |
list_worklogsList the worklogs on a Jira issue (id, author, time, started, comment). Useful to verify what was logged or to check for duplicates before adding more.Input schema{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"issue_key": {
"type": "string",
"description": "Jira issue key, e.g. LEGLINK-142."
}
},
"required": [
"issue_key"
]
}Annotations{
"readOnlyHint": true,
"openWorldHint": true
} | — | Read only · — | — |
whoamiReturn the authenticated Jira user (display name, accountId, email). Use to confirm credentials.Input schema{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {}
}Annotations{
"readOnlyHint": true,
"openWorldHint": true
} | — | Read only · — | — |