MCP server intelligence profile

atlassian-mcp Server

Enables interaction with Atlassian Confluence through MCP, allowing retrieval of pages by ID and searching with CQL queries

Local OnlyShapeGames
Awaiting current scanNpm · 0.1.5

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

1Distribution channel
14Independently observed tools
0Linked remote endpoints
AvailableVersion intelligence

Detailed security scan evidence is not public for this MCP yet. Public identity, registry metadata, and independently observed protocol inventory remain available.

Install and connect

Installation and connection instructions are shown only when supported by retained package, repository, or endpoint evidence.

Install atlassian-mcp from npm

Version 0.1.5 declares 1 executable entrypoint.

npm install --save-exact atlassian-mcp@0.1.5
npx -y -p atlassian-mcp@0.1.5 atlassian-mcp
MCP client configuration example
{
  "mcpServers": {
    "atlassian-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "-p",
        "atlassian-mcp@0.1.5",
        "atlassian-mcp"
      ]
    }
  }
}

Identity

Canonical slugatlassian-mcp-019dc5b4DeploymentLocal Only
Canonical packagenpm:atlassian-mcpRepositoryShapeGames/atlassian-mcp
First publishedLatest release
Last security verificationClassification confidence90%
PublicationDraftOfficial distributionNot verified

Distributions

ChannelIdentifierCurrent versionVersionsSource
npmatlassian-mcp0.1.51Repository

Current release

PackageVersionPublished / observedInventorySecurity scan
npmatlassian-mcp0.1.5CurrentSep 5, 202614 toolsSucceeded · 0 resources · 0 promptsEvidence restricted
Enterprise protection

Continuously monitor this MCP for security risk

Independently scan the exact version your agents use, receive alerts when its risk changes, and investigate every finding with retained version evidence.

  • Independent exact-version security scans
  • Continuous release and vulnerability monitoring
  • Risk-change alerts with capability context
  • Historical evidence and API exports
Custom pricingContact salesTailored to your organization, integrations, data needs, and support requirements.

Current version evidence

No public current-version evidence is available yet.

Current protocol inventory

2025-06-18Negotiated protocol
atlassianServer-reported name
1Capability groups
Aug 22, 2026Observed

Tools 14

ToolCategoryAnnotationsRisk
confluence_searchAdvanced Confluence search using CQL (Confluence Query Language)
Input schema
{
  "type": "object",
  "properties": {
    "cql": {
      "type": "string",
      "description": "CQL query string"
    },
    "limit": {
      "type": "number"
    },
    "start": {
      "type": "number"
    }
  },
  "required": [
    "cql"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
create-jira-issue(WIP) Create a new Jira issue. This tool is a work in progress and may not be fully functional yet.
Input schema
{
  "type": "object",
  "properties": {
    "issueData": {
      "type": "object",
      "properties": {
        "fields": {
          "type": "object",
          "properties": {
            "project": {
              "type": "object",
              "properties": {
                "key": {
                  "type": "string",
                  "description": "Project key"
                }
              },
              "required": [
                "key"
              ],
              "additionalProperties": false
            },
            "summary": {
              "type": "string",
              "description": "Issue summary"
            },
            "issuetype": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "Issue type ID"
                },
                "name": {
                  "type": "string",
                  "description": "Issue type name"
                }
              },
              "additionalProperties": false
            },
            "description": {
              "type": "string",
              "description": "Issue description"
            },
            "assignee": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string"
                },
                "name": {
                  "type": "string"
                }
              },
              "additionalProperties": false
            }
          },
          "required": [
            "project",
            "summary",
            "issuetype"
          ],
          "additionalProperties": false
        }
      },
      "required": [
        "fields"
      ],
      "additionalProperties": false,
      "description": "Jira issue data (JSON)"
    }
  },
  "required": [
    "issueData"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
create-pageCreate a new Confluence page
Input schema
{
  "type": "object",
  "properties": {
    "spaceKey": {
      "type": "string",
      "description": "Space Key"
    },
    "title": {
      "type": "string",
      "description": "Page title"
    },
    "body": {
      "type": "string",
      "description": "Page body (HTML or storage format)"
    },
    "parentId": {
      "type": "number",
      "description": "Parent page ID"
    }
  },
  "required": [
    "spaceKey",
    "title",
    "body"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
delete-jira-issueDelete a Jira issue by key
Input schema
{
  "type": "object",
  "properties": {
    "issueKey": {
      "type": "string",
      "description": "Jira issue key"
    }
  },
  "required": [
    "issueKey"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
delete-pageDelete a Confluence page by ID
Input schema
{
  "type": "object",
  "properties": {
    "pageId": {
      "type": "number",
      "description": "Confluence page ID"
    }
  },
  "required": [
    "pageId"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
get-childrenGet children of a Confluence page by ID
Input schema
{
  "type": "object",
  "properties": {
    "pageId": {
      "type": "number",
      "description": "Confluence page ID"
    }
  },
  "required": [
    "pageId"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
get-folderGet a Confluence folder by ID
Input schema
{
  "type": "object",
  "properties": {
    "folderId": {
      "type": "number",
      "description": "Confluence folder ID"
    }
  },
  "required": [
    "folderId"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
get-jira-issueGet a Jira issue by key. Returns issue details including description and subtasks.
Input schema
{
  "type": "object",
  "properties": {
    "issueKey": {
      "type": "string",
      "description": "Jira issue key"
    }
  },
  "required": [
    "issueKey"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
get-pageGet a Confluence page by ID (optionally specify content format: storage or markdown)
Input schema
{
  "type": "object",
  "properties": {
    "pageId": {
      "type": "number",
      "description": "Confluence page ID"
    },
    "bodyFormat": {
      "type": "string",
      "enum": [
        "storage",
        "markdown"
      ],
      "description": "Content format: storage (default) or markdown"
    }
  },
  "required": [
    "pageId"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
get-spaceGet a Confluence space by ID
Input schema
{
  "type": "object",
  "properties": {
    "spaceId": {
      "type": "number",
      "description": "Confluence space ID"
    }
  },
  "required": [
    "spaceId"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
list-spacesList all Confluence spaces (optionally filter by keys)
Input schema
{
  "type": "object",
  "properties": {
    "start": {
      "type": "number",
      "description": "Start index"
    },
    "limit": {
      "type": "number",
      "description": "Page size limit"
    },
    "keys": {
      "type": "string",
      "description": "Filter by key(s), comma-separated"
    }
  },
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
search-jira-issuesSearch Jira issues using JQL
Input schema
{
  "type": "object",
  "properties": {
    "jql": {
      "type": "string",
      "description": "Jira Query Language (JQL) string. A bounded query is required."
    },
    "nextPageToken": {
      "type": "string",
      "description": "The token for fetching the next page of results. Use the nextPageToken from the previous response for pagination."
    },
    "maxResults": {
      "type": "number",
      "description": "The maximum number of items to return per page. Default is 50. Maximum is 5000."
    },
    "fields": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "A list of fields to return for each issue. Accepts a comma-separated list. Example: ['summary','comment']"
    },
    "expand": {
      "type": "string",
      "description": "Comma-delimited string to include additional information about issues in the response. Example: 'names,changelog'."
    },
    "properties": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "A list of up to 5 issue properties to include in the results. Accepts a comma-separated list."
    },
    "fieldsByKeys": {
      "type": "boolean",
      "description": "Reference fields by their key (true) or ID (false). Default is false."
    },
    "failFast": {
      "type": "boolean",
      "description": "Fail this request early if all field data cannot be retrieved. Default is false."
    },
    "reconcileIssues": {
      "type": "array",
      "items": {
        "type": "number"
      },
      "description": "Strong consistency issue IDs to be reconciled with search results. Accepts up to 50 IDs."
    }
  },
  "required": [
    "jql"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
update-jira-issue(WIP) Update a Jira issue by key. This tool is a work in progress and may not be fully functional yet.
Input schema
{
  "type": "object",
  "properties": {
    "issueKey": {
      "type": "string",
      "description": "Jira issue key"
    },
    "issueData": {
      "description": "Jira issue update data (JSON)"
    }
  },
  "required": [
    "issueKey"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
update-pageUpdate a Confluence page by ID
Input schema
{
  "type": "object",
  "properties": {
    "pageId": {
      "type": "number",
      "description": "Confluence page ID"
    },
    "title": {
      "type": "string",
      "description": "Page title"
    },
    "body": {
      "type": "string",
      "description": "Page body (HTML or storage format)"
    },
    "version": {
      "type": "number",
      "description": "New version number for the page"
    },
    "status": {
      "type": "string",
      "description": "Page status (default: current)"
    }
  },
  "required": [
    "pageId",
    "title",
    "body",
    "version"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}

Resources 0

  • None observed.

Resource templates 0

  • None observed.

Prompts 0

  • None observed.

Remote endpoints

EndpointTransportAuthenticationHealthObserved
No verified remote endpoint is linked.

atlassian-mcp Server questions

How do I install atlassian-mcp Server?

Install the selected package version with: npm install --save-exact atlassian-mcp@0.1.5

What tools does atlassian-mcp Server provide?

atlassian-mcp Server exposed 14 tools during independent protocol observation, including confluence_search, create-jira-issue, create-page, delete-jira-issue, delete-page, get-children, get-folder, get-jira-issue, and others.

Is atlassian-mcp Server secure?

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

Company and product intelligence

These internal links are derived from strong identity fields such as the implementation name, package, repository, vendor, and listing name—not generic description prose.

Associated company landscape

Atlassian intelligence →

Association is based on retained identity fields; it does not by itself prove first-party publication.

Explore related MCP server guides

Curated product and capability guides containing this catalog record.

Official vs Community MCP Servers

Let’s talk about MCP security.

Share your details and our security team will contact you.