# Atlassian Integration Server

Connect AI agents to Atlassian Jira and Confluence to query data and perform actions through a standardized interface. Enable seamless management of issues, projects, pages, and comments directly fro…

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y @smithery/cli@latest mcp add phuc-nt/mcp-atlassian-server

# Browse available tools
npx -y @smithery/cli@latest tool list phuc-nt/mcp-atlassian-server

# Get full schema for a tool
npx -y @smithery/cli@latest tool get phuc-nt/mcp-atlassian-server createIssue

# Call a tool
npx -y @smithery/cli@latest tool call phuc-nt/mcp-atlassian-server createIssue '{}'
```

## Tools (24)

- `createIssue` — Create a new issue in Jira
- `updateIssue` — Update information of a Jira issue
- `transitionIssue` — Transition the status of a Jira issue
- `assignIssue` — Assign a Jira issue to a user
- `createFilter` — Create a new filter in Jira
- `updateFilter` — Update an existing filter in Jira
- `deleteFilter` — Delete a filter in Jira
- `createSprint` — Create a new sprint in Jira
- `startSprint` — Start a Jira sprint
- `closeSprint` — Close a Jira sprint
- `addIssuesToBacklog` — Move issue(s) to Jira backlog (POST /rest/agile/1.0/backlog/issue or /rest/agile/1.0/backlog/{boardId}/issue)
- `rankBacklogIssues` — Rank issues in Jira backlog
- `createDashboard` — Create a new Jira dashboard
- `updateDashboard` — Update a Jira dashboard
- `addGadgetToDashboard` — Add gadget to Jira dashboard (POST /rest/api/3/dashboard/{dashboardId}/gadget)
- `removeGadgetFromDashboard` — Remove gadget from Jira dashboard
- `createPage` — Create a new page in Confluence (API v2, chỉ hỗ trợ spaceId)
- `updatePage` — Update the content and information of a Confluence page
- `addComment` — Add a comment to a Confluence page
- `deletePage` — Delete a Confluence page (API v2)
- `updatePageTitle` — Update the title of a Confluence page (API v2)
- `updateFooterComment` — Update a footer comment in Confluence (API v2)
- `deleteFooterComment` — Delete a footer comment in Confluence (API v2)
- `addIssueToSprint` — Add issues to a Jira sprint (POST /rest/agile/1.0/sprint/{sprintId}/issue)

```bash
# Get full input/output schema for a tool
npx -y @smithery/cli@latest tool get phuc-nt/mcp-atlassian-server <tool-name>
```

## Resources

- `jira://issues` — List and search all Jira issues
- `jira://issues/{issueKey}` — Get details for a specific Jira issue by key. Replace {issueKey} with the issue key.
- `jira://issues/{issueKey}/transitions` — List available transitions for a Jira issue. Replace {issueKey} with the issue key.
- `jira://issues/{issueKey}/comments` — List comments for a Jira issue. Replace {issueKey} with the issue key.
- `jira://projects` — List and search all Jira projects
- `jira://projects/{projectKey}` — Get details for a specific Jira project by key. Replace {projectKey} with the project key.
- `jira://projects/{projectKey}/roles` — List roles for a Jira project. Replace {projectKey} with the project key.
- `jira://users` — List and search all Jira users (use filters)
- `jira://users/{accountId}` — Get details for a specific Jira user by accountId. Replace {accountId} with the user accountId.
- `jira://users/assignable/{projectKey}` — List assignable users for a Jira project. Replace {projectKey} with the project key.
- `jira://users/role/{projectKey}/{roleId}` — List users by role in a Jira project. Replace {projectKey} and {roleId} with the project key and role ID.
- `jira://filters` — List and search all Jira filters
- `jira://filters/{filterId}` — Get details for a specific Jira filter by ID. Replace {filterId} with the filter ID.
- `jira://filters/my` — List filters owned by or shared with the current user.
- `jira://boards` — List and search all Jira boards
- `jira://boards/{boardId}` — Get details for a specific Jira board by ID. Replace {boardId} with the board ID.
- `jira://boards/{boardId}/issues` — List issues in a Jira board. Replace {boardId} with the board ID.
- `jira://boards/{boardId}/configuration` — Get configuration of a specific Jira board. Replace {boardId} with the board ID.
- `jira://boards/{boardId}/sprints` — List all sprints in a Jira board. Replace {boardId} with the board ID.
- `jira://sprints/{sprintId}` — Get details for a specific Jira sprint by ID. Replace {sprintId} with the sprint ID.
- `jira://sprints/{sprintId}/issues` — List issues in a Jira sprint. Replace {sprintId} with the sprint ID.
- `jira://sprints` — List and search all Jira sprints
- `jira://dashboards` — List and search all Jira dashboards
- `jira://dashboards/my` — List dashboards owned by or shared with the current user.
- `jira://dashboards/{dashboardId}` — Get details of a specific Jira dashboard.
- `jira://dashboards/{dashboardId}/gadgets` — List gadgets of a specific Jira dashboard.
- `jira://gadgets` — List all available Jira gadgets for dashboard.
- `confluence://spaces` — List and search all Confluence spaces
- `confluence://spaces/{spaceId}` — Get details for a specific Confluence space by id. Replace {spaceId} với id số của space (ví dụ: 19464200).
- `confluence://spaces/{spaceId}/pages` — List all pages in a specific Confluence space. Replace {spaceId} với id số của space.
- `confluence://pages/{pageId}` — Get details for a specific Confluence page by ID. Replace {pageId} with the page ID.
- `confluence://pages/{pageId}/children` — List all children for a Confluence page. Replace {pageId} với ID trang.
- `confluence://pages/{pageId}/comments` — List comments for a Confluence page. Replace {pageId} with the page ID.
- `confluence://pages/{pageId}/ancestors` — List all ancestors for a Confluence page. Replace {pageId} with the page ID.
- `confluence://pages/{pageId}/attachments` — List all attachments for a Confluence page. Replace {pageId} with the page ID.
- `confluence://pages/{pageId}/versions` — List all versions for a Confluence page. Replace {pageId} with the page ID.
- `confluence://pages` — List and search all Confluence pages
- `confluence://pages/{pageId}/labels` — List all labels for a Confluence page. Replace {pageId} with the page ID.

---

Source: https://github.com/phuc-nt/mcp-atlassian-server | License: MIT
