0.1.0npm · @andreimaxim/atlassian-mcp · current release
Observed 2026-08-23T20:53:37.989Z using mcpSecurity-inventory. Status: succeeded. Negotiated protocol: 2025-06-18.
{
"tools": {
"listChanged": true
}
}| Tool | Category | Annotations | Risk |
|---|---|---|---|
atlassian_getMake one authenticated GET request to a site-relative Jira or Confluence API path. This tool is read-only and may truncate large output.Input schema{
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"path": {
"type": "string",
"description": "Site-relative API path beginning with /, for example /rest/api/3/issue/ENG-123 or /wiki/api/v2/pages/123"
},
"query": {
"description": "Optional query parameters. Array values are encoded as repeated parameters.",
"type": "object",
"propertyNames": {
"type": "string"
},
"additionalProperties": {
"anyOf": [
{
"anyOf": [
{
"type": "string"
},
{
"type": "number"
},
{
"type": "boolean"
}
]
},
{
"type": "array",
"items": {
"anyOf": [
{
"type": "string"
},
{
"type": "number"
},
{
"type": "boolean"
}
]
}
}
]
}
}
},
"required": [
"path"
]
}Annotations{
"readOnlyHint": true,
"destructiveHint": false,
"idempotentHint": true
} | — | Read only · Non-destructive | — |
jira_searchSearch Jira issues using POST /rest/api/3/search/jql. This is the only read-only POST exposed by the server. Returns Jira's raw response and may truncate large output.Input schema{
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"jql": {
"type": "string",
"description": "A Jira Query Language expression"
},
"maxResults": {
"default": 25,
"type": "integer",
"minimum": 1,
"maximum": 100
},
"fields": {
"description": "Fields to include. Omit to use Jira's defaults.",
"type": "array",
"items": {
"type": "string"
}
},
"nextPageToken": {
"description": "Token returned by a previous search page",
"type": "string"
}
},
"required": [
"jql"
]
}Annotations{
"readOnlyHint": true,
"destructiveHint": false,
"idempotentHint": true
} | — | Read only · Non-destructive | — |