atlassian-mcp
Provides read-only access to Atlassian Cloud Jira and Confluence APIs, allowing authenticated GET requests to site-relative API paths.
Allows retrieval of Confluence Cloud content via the Confluence REST API, read-only.
Enables querying Jira issues through the JQL search endpoint, with read-only access to Jira Cloud data.
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., "@atlassian-mcpsearch Jira for open high-priority issues assigned to me"
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.
Atlassian MCP
A focused, read-only Model Context Protocol server for Jira and Confluence Cloud. It works with Amp, Claude Code, Codex, and other clients that support local stdio MCP servers.
Tools
The server deliberately exposes only two tools:
atlassian_getperforms one authenticatedGETrequest to a site-relative Jira or Confluence API path.jira_searchperforms an authenticatedPOSTto Jira's read-only/rest/api/3/search/jqlendpoint.
It does not expose create, edit, assignment, transition, or deletion operations. Tool output is limited to 2,000 lines or 50 KB.
Related MCP server: Atlassian MCP Server
Requirements
Node.js 20 or newer
An Atlassian Cloud API token
Configure the process that runs your MCP client with these environment variables:
export ATLASSIAN_SITE_URL="https://your-company.atlassian.net"
export ATLASSIAN_EMAIL="you@example.com"
export ATLASSIAN_API_TOKEN="your-api-token"ATLASSIAN_SITE_URL must use HTTPS. Treat ATLASSIAN_API_TOKEN as a secret and do not commit it to an MCP configuration file.
Run the published package through an MCP client:
npx -y @andreimaxim/atlassian-mcp@0.1.0It communicates over standard input and output, so running it directly appears to do nothing while it waits for an MCP client.
Amp
The distributable using-atlassian skill includes the MCP launch configuration and exposes only atlassian_get and jira_search. Install that directory as a project, personal, or workspace skill.
For a project skill, copy it into the repository:
.agents/skills/using-atlassian/SKILL.mdFor an orb, add the three ATLASSIAN_* values under personal, project, or workspace Secrets & Env Vars. Store the API token as a secret. Amp starts the MCP server in the orb when it discovers the skill and reveals its tools only when the skill loads.
The previous amp.atlassian.* plugin settings are no longer read; the portable MCP server uses environment variables in every harness.
Claude Code
Register the same stdio server at user scope:
claude mcp add --scope user --transport stdio atlassian -- \
npx -y @andreimaxim/atlassian-mcp@0.1.0Start Claude Code with the three ATLASSIAN_* variables available in its environment. For team distribution, put the equivalent server entry in the project's .mcp.json and keep credentials as environment-variable references.
Codex
Add this entry to ~/.codex/config.toml, or to .codex/config.toml in a trusted project:
[mcp_servers.atlassian]
command = "npx"
args = ["-y", "@andreimaxim/atlassian-mcp@0.1.0"]
env_vars = [
"ATLASSIAN_SITE_URL",
"ATLASSIAN_EMAIL",
"ATLASSIAN_API_TOKEN",
]
enabled_tools = ["atlassian_get", "jira_search"]The env_vars list forwards existing variables without placing their values in the configuration file.
Development
npm install
npm run check
npm pack --dry-runRepository layout:
src/atlassian.tscontains credential handling, request validation, the Atlassian HTTP client, and bounded output formatting.src/server.tsregisters the MCP tools and their read-only annotations.src/index.tsstarts the stdio server.skill/using-atlassian/SKILL.mdcontains the Amp skill and its MCP launch configuration.test/contains HTTP-client and protocol-level integration tests.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Related MCP Servers
- AlicenseBqualityCmaintenanceAn open-source Model Context Protocol (MCP) server for Atlassian Jira and Confluence Cloud, enabling LLMs to search, read, write, and manage issues and pages.222MIT
- 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.1MIT
- Alicense-qualityDmaintenanceProduction-ready MCP server for Atlassian Jira and Confluence, providing tools for issue management, page retrieval, and content operations.361MIT
- Alicense-qualityBmaintenanceA read-only MCP server that provides AI agents structured access to Jira Cloud, enabling project listing, sprint overview, issue retrieval, and JQL search.55MIT
Related MCP Connectors
Read-only MCP server for ClassQuill, a tutoring-business-management platform.
An MCP server for deep research or task groups
Official Microsoft MCP Server to query Microsoft Entra data using natural language
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/andreimaxim/atlassian-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server