Install
$ agentstack add mcp-tingyiy-atlassian-mcp-server ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Atlassian MCP Server
An MCP server for Jira and Confluence Cloud. Write in markdown — the server converts to Atlassian Document Format (ADF) automatically.
Quickstart
git clone https://github.com/tingyiy/atlassian-mcp-server.git
cd atlassian-mcp-server
pip install -r requirements.txt # or: uv pip install -r requirements.txt
Then add it to your MCP client (see [Configuration](#configuration) below).
You'll need an Atlassian API token and these values:
| Variable | Example | |----------|---------| | ATLASSIAN_USERNAME | you@company.com | | ATLASSIAN_API_KEY | your API token | | JIRA_URL | https://your-domain.atlassian.net/rest/api/3 | | CONFLUENCE_URL | https://your-domain.atlassian.net/wiki | | CONFLUENCE_SPACE_KEY | ENG (optional, default space) |
Tools
Jira
| Tool | Description | |------|-------------| | list_jira_issues | Search issues using JQL | | read_jira_issue | Get full issue details | | jira_create_issue | Create an issue (markdown description) | | jira_update_issue | Update summary or description (markdown) | | jira_add_comment | Add a comment (markdown) | | jira_get_comments | Retrieve all comments | | jira_get_attachment_image | Download an attachment by ID | | jira_transition_issue | Move issue through workflow | | jira_get_transitions | List available transitions |
Confluence
| Tool | Description | |------|-------------| | list_confluence_pages | List pages in a space | | view_confluence_page | Get page content and metadata | | confluence_create_page | Create a page (optionally nested) | | edit_confluence_page | Update a page (auto-increments version) | | confluence_delete_page | Delete a page | | confluence_search | Search using CQL | | confluence_get_comments | Get all comments on a page | | confluence_add_comment | Add a comment (with reply support) | | confluence_get_attachment_image | Download an image attachment |
Markdown Support
Jira tools (jira_create_issue, jira_update_issue, jira_add_comment) accept markdown for descriptions and comments. The server converts it to ADF behind the scenes using md2adf.
Supported formatting: headings, bold, italic, strikethrough, inline code, links, images, code blocks (with language), bullet/ordered/nested lists, blockquotes, horizontal rules, and tables.
Configuration
Claude Code
Add to ~/.claude.json:
{
"mcpServers": {
"atlassian": {
"type": "stdio",
"command": "python3",
"args": ["/path/to/atlassian-mcp-server/server.py"],
"env": {
"ATLASSIAN_USERNAME": "you@company.com",
"ATLASSIAN_API_KEY": "your_api_token",
"JIRA_URL": "https://your-domain.atlassian.net/rest/api/3",
"CONFLUENCE_URL": "https://your-domain.atlassian.net/wiki",
"CONFLUENCE_SPACE_KEY": "ENG"
}
}
}
}
Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"atlassian": {
"command": "python3",
"args": ["/path/to/atlassian-mcp-server/server.py"],
"env": {
"ATLASSIAN_USERNAME": "you@company.com",
"ATLASSIAN_API_KEY": "your_api_token",
"JIRA_URL": "https://your-domain.atlassian.net/rest/api/3",
"CONFLUENCE_URL": "https://your-domain.atlassian.net/wiki",
"CONFLUENCE_SPACE_KEY": "ENG"
}
}
}
}
Cursor / VS Code
Add to .cursor/mcp.json or .vscode/mcp.json:
{
"mcpServers": {
"atlassian": {
"command": "python3",
"args": ["/path/to/atlassian-mcp-server/server.py"],
"env": {
"ATLASSIAN_USERNAME": "you@company.com",
"ATLASSIAN_API_KEY": "your_api_token",
"JIRA_URL": "https://your-domain.atlassian.net/rest/api/3",
"CONFLUENCE_URL": "https://your-domain.atlassian.net/wiki"
}
}
}
}
Make sure the python3 in command points to an environment with the dependencies installed. To be explicit, use the full path (e.g. /path/to/venv/bin/python).
Notes
Mermaid Diagrams in Confluence
Confluence's Mermaid plugin stores diagram source internally, so the MCP tools can't render them programmatically. Instead, provide the Mermaid source in a code block — the user can then convert it in the Confluence editor.
License
MIT — see [LICENSE](LICENSE).
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: tingyiy
- Source: tingyiy/atlassian-mcp-server
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.