jira-confluence-mcp
Provides tools for searching Confluence Cloud spaces and retrieving page content and child pages.
Provides tools for interacting with Jira Cloud, including fetching ticket details and attachments, posting comments, updating fields, and performing JQL searches.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@jira-confluence-mcpsearch Jira for similar defects to EA-123 and get the Confluence runbook"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Jira + Confluence MCP
A single MCP server that gives the Rapid7 SI Triage agent read/write access to Jira Cloud (tickets, attachments, comments, search) and Confluence Cloud (the historical knowledge base of runbooks and postmortems). Combining both Atlassian products in one server is natural: they share the same auth and host, and the triage workflow uses them together.
A key side effect lives here: when the agent fetches a ticket, this server auto-downloads log-like attachments into a shared directory that the companion Log Intelligence MCP then ingests.
Tools
Jira
Tool | Purpose |
| Fetch + normalise a ticket (summary, description, comments, attachments, product/components, environment). Auto-downloads log attachments unless |
| Download a specific attachment by id into the ticket's log dir. |
| JQL search — used to find similar historical defects. |
| Post a comment (write; guarded). |
| Update one field (write; guarded). |
Confluence
Tool | Purpose |
| CQL/text search of the KB. Returns ranked, normalised results (title, url, excerpt, relevance) — the same shape as Jira search so the agent handles both uniformly. |
| Fetch a page as clean plain text (storage-format markup stripped) + metadata. Cached. |
| List direct child pages (walk a runbook space). |
Related MCP server: inhouse_confluence_mcp
Auth & configuration
Atlassian Cloud uses HTTP Basic auth with email:api_token (base64). Secrets
come from the environment only — never hardcoded. Copy .env.example to .env:
ATLASSIAN_BASE_URL=https://asgspratapsingh.atlassian.net
ATLASSIAN_EMAIL=asgspratapsingh@gmail.com
ATLASSIAN_API_TOKEN=<create at id.atlassian.com/manage-profile/security/api-tokens>
SI_DATA_DIR=./si_dataATLASSIAN_BASE_URL may be any URL from your site — it's normalised to the site
origin automatically (e.g. …atlassian.net/jira/for-you?tab=x →
https://…atlassian.net).
Write safety. DRY_RUN=1 refuses all writes (read-only). ALLOW_WRITES=0
refuses writes even when not in dry-run. Both post_comment and
update_ticket_field respect these guards.
Attachment download. AUTO_DOWNLOAD_LOGS=1 (default) downloads attachments
whose name ends in LOG_ATTACHMENT_SUFFIXES (.log,.txt,.gz,.out,.err) or that
are text/plain, up to MAX_ATTACHMENT_MB (50). Files land in
SI_DATA_DIR/logs/<ticket_id>/.
The HTTP client retries 429/5xx with exponential backoff (honouring
Retry-After), controlled by HTTP_MAX_RETRIES and HTTP_TIMEOUT.
Install & run
cd jira-confluence-mcp
python -m venv .venv && source .venv/bin/activate
pip install -e . # installs mcp, httpx, uvicorn
cp .env.example .env # fill in ATLASSIAN_API_TOKEN
# stdio:
python -m jira_confluence_mcp --transport stdio
# HTTP (streamable-http at http://127.0.0.1:8080/mcp):
python -m jira_confluence_mcp --transport httpRegister with an MCP client (stdio example)
{
"mcpServers": {
"jira-confluence": {
"command": "python",
"args": ["-m", "jira_confluence_mcp", "--transport", "stdio"],
"env": {
"ATLASSIAN_BASE_URL": "https://asgspratapsingh.atlassian.net",
"ATLASSIAN_EMAIL": "asgspratapsingh@gmail.com",
"ATLASSIAN_API_TOKEN": "…",
"SI_DATA_DIR": "/absolute/path/to/si_data"
}
}
}
}How it coordinates with the Log Intelligence MCP
Set SI_DATA_DIR to the same absolute path for both servers.
si_data/
logs/<ticket_id>/… # THIS server writes downloaded attachments here
# the Log Intelligence MCP reads + indexes themFlow: get_ticket(EA-123) here → files appear in logs/EA-123/ →
ingest_ticket_logs("EA-123") on the Log MCP → agent queries logs →
delete_ticket_logs("EA-123") cleans up.
Ports
This server's HTTP transport defaults to 8080; the Log Intelligence MCP uses 8081, so both can run simultaneously.
Tests
pytest # in the POC environment
python tests/_runner.py # offline harness when pytest isn't installedCovers auth-header construction, base-URL normalisation, ADF→text flattening, ticket normalisation, log-attachment filtering, Confluence storage-format stripping, search-result normalisation, CQL escaping, and — via a stub HTTP transport (so no network is needed) — ticket fetch with auto-download, JQL search normalisation, write guards, Confluence search/get_page/caching, and child-page listing. 19 tests, all offline.
Live Jira/Confluence calls and running the MCP over a real transport need network access and the
mcp/httpxpackages installed, which the build sandbox blocks. The tests validate all request-building and response-handling logic against real payloads through the stubbed transport.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceA read-only MCP server that enables querying and searching Atlassian Confluence pages and Jira issues through their REST APIs. Supports retrieving content by ID or URL, searching using CQL/JQL, and listing spaces and projects.Last updated1MIT
- Flicense-qualityDmaintenanceAn MCP server implementation for interacting with self-hosted Confluence Data Center or Server instances via search, content retrieval, and optional write operations. It features space auto-discovery, audit logging, and granular access control for secure enterprise collaboration.Last updated
- Alicense-qualityAmaintenanceMCP server for interacting with Jira Cloud instances. Enables issue management, JQL queries, project and sprint management, and batch operations via natural language interfaces.Last updated2404MIT
- Alicense-qualityCmaintenanceThis MCP server enables interaction with Atlassian products (Jira and Confluence), with additional tools for uploading attachments, embedding images, and commenting with images. It supports both Cloud and Server/Data Center deployments.Last updatedMIT
Related MCP Connectors
MCP server for AI access to SmartBear tools, including BugSnag, Reflect, Swagger, PactFlow, QTM4J.
Markdown-first MCP server for Notion API with 8 composite tools and 39 actions.
A MCP server built for developers enabling Git based project management with project and personal…
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/anands-bounteous/jira-confluence-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server