mcp-atlassian-tools
v0.1.1
Published
MCP Server for Confluence and JIRA (Bearer Token)
Downloads
41
Readme
mcp-atlassian-tools
Node.js MCP server for Confluence (Data Center/Server) using Bearer token authentication and JIRA.
Optional JIRA tools are enabled when JIRA_URL and JIRA_BEARER_TOKEN are set.
Features
list_confluence_spacesget_confluence_spacesearch_confluence_pagesget_confluence_pageget_confluence_page_by_titlelist_confluence_page_childrenlist_confluence_page_attachmentslist_confluence_page_labelsget_confluence_current_user
Optional Jira tools:
get_jira_current_userlist_jira_projectssearch_jira_issuesget_jira_issuelist_jira_issue_commentslist_jira_issue_transitions
Usage with npm
The server uses stdio transport and can be wired e.g. into VS Code MCP config.
Define the MCP tool in your client, e.g. like this:
"mcp-atlassian-tools": {
"command": "npx",
"args": ["-y", "mcp-atlassian-tools"],
"env": {
"CONFLUENCE_BASE_URL": "",
"CONFLUENCE_BEARER_TOKEN": "",
"CONFLUENCE_SPACES_FILTER": "",
"JIRA_URL": "",
"JIRA_BEARER_TOKEN": ""
}
}Make sure to enable the tools, if needed.
Local Usage
Configuration
Create a .env file in this project root:
CONFLUENCE_BASE_URL=your_confluence_url_here
CONFLUENCE_BEARER_TOKEN=your_pat_here
CONFLUENCE_SSL_VERIFY=true
# optional
# CONFLUENCE_SPACES_FILTER=SPACE,TEAM
# optional JIRA
# JIRA_URL=your_jira_url_here
# JIRA_BEARER_TOKEN=your_jira_pat_here
# JIRA_SSL_VERIFY=true
# JIRA_PROJECTS_FILTER=PROJ,TEAMRun
npm install
npm run build
npm start