MCP Atlassian Server
The MCP Atlassian Server integrates Confluence and Jira with Model Context Protocol (MCP) to provide direct access to content and issues.
Confluence Integration:
Search content using CQL (Confluence Query Language)
Access pages, attachments, and comments
Filter content by space and limit results
Jira Integration:
Search issues using JQL (Jira Query Language)
Retrieve issue details including status, assignee, and timestamps
Specify fields and limit results
Tools:
confluence_search: Perform CQL-based searchesjira_search: Execute JQL-based searches
Resource Templates:
Access Confluence pages using
confluence://{space_key}/pages/{title}Access Jira issues using
jira://{project_key}/issues/{issue_key}
Integrates Atlassian products with the Model Context Protocol, enabling access to content across Atlassian's ecosystem.
Provides searching capabilities for Confluence content using CQL, with access to pages, attachments, comments, and space filtering.
Enables searching Jira issues via JQL, retrieving issue details including status, assignments, and timestamps.
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., "@MCP Atlassian Serverfind open issues in the ENG project 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.
MCP Atlassian Server
MCP server pro integraci Atlassian produktů (Confluence, Jira) s Model Context Protocol. Tento nástroj umožňuje snadný přístup k vašemu Confluence obsahu a Jira ticketům přímo přes MCP rozhraní.
Funkce
Confluence
Vyhledávání obsahu pomocí CQL (Confluence Query Language)
Přístup ke stránkám, přílohám a komentářům
Filtrování podle prostoru (space)
Jira
Vyhledávání issues pomocí JQL (Jira Query Language)
Získávání detailů o issues včetně statusu, přiřazení a časových značek
Related MCP server: Atlassian MCP Server
Instalace
Installing via Smithery
To install Atlassian Integration Server for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @petrsovadina/mcp-atlassian --client claudeManual Installation
git clone https://github.com/petrsovadina/mcp-atlassian.git
cd mcp-atlassian
npm install
npm run buildKonfigurace
Nastavte následující proměnné prostředí:
Confluence
CONFLUENCE_URL=https://your-domain.atlassian.net/wiki
CONFLUENCE_USERNAME=your-email@domain.com
CONFLUENCE_API_TOKEN=your-api-tokenJira
JIRA_URL=https://your-domain.atlassian.net
JIRA_USERNAME=your-email@domain.com
JIRA_API_TOKEN=your-api-tokenPoužití v MCP
Přidejte následující konfiguraci do vašeho MCP settings souboru:
{
"mcpServers": {
"atlassian": {
"command": "node",
"args": ["/path/to/mcp-atlassian/build/index.js"],
"env": {
"CONFLUENCE_URL": "your-confluence-url",
"CONFLUENCE_USERNAME": "your-username",
"CONFLUENCE_API_TOKEN": "your-api-token",
"JIRA_URL": "your-jira-url",
"JIRA_USERNAME": "your-username",
"JIRA_API_TOKEN": "your-api-token"
}
}
}
}Dostupné nástroje
confluence_search
Vyhledávání v Confluence obsahu pomocí CQL.
{
"query": "type=page AND space='Engineering'", // CQL dotaz
"limit": 10 // volitelný limit výsledků (1-50)
}jira_search
Vyhledávání Jira issues pomocí JQL.
{
"jql": "project = ENG AND status = Open", // JQL dotaz
"fields": "summary,status,assignee", // volitelné pole
"limit": 10 // volitelný limit výsledků (1-50)
}Resource Templates
Confluence Page
confluence://{space_key}/pages/{title}
Jira Issue
jira://{project_key}/issues/{issue_key}
Příklady použití
Vyhledávání v Confluence
const result = await mcp.use('confluence_search', {
query: "type=page AND space='Engineering' ORDER BY created DESC",
limit: 5
});Vyhledávání v Jira
const result = await mcp.use('jira_search', {
jql: "project = ENG AND status = 'In Progress'",
fields: "summary,status,assignee,created",
limit: 5
});Přispívání
Pokud chcete přispět k vývoji, můžete:
Forkovat repozitář
Vytvořit feature branch
Commitnout vaše změny
Pushnout branch
Vytvořit Pull Request
Licence
MIT
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
- Alicense-qualityBmaintenanceModel Context Protocol (MCP) server for Atlassian Cloud products (Confluence and Jira). This integration is designed specifically for Atlassian Cloud instances and does not support Atlassian Server or Data Center deployments.Last updated5,652MIT
- Alicense-qualityDmaintenanceProvides integration with Atlassian products through the Model Context Protocol, allowing users to interact with JIRA tickets and Confluence pages.Last updated621MIT
- Alicense-qualityDmaintenanceModel Context Protocol server that integrates with Atlassian Confluence and Jira, enabling AI assistants to search, create, and update content in these platforms through natural language interactions.Last updated1MIT
- -license-quality-maintenanceA Model Context Protocol server that enables interaction with Atlassian products (Confluence and Jira), supporting both Cloud and Server/Data Center deployments for searching, creating, and managing content through natural language.Last updated
Related MCP Connectors
Your memory, everywhere AI goes. Build knowledge once, access it via MCP anywhere.
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
Surface customer & prospect context from Slack, email, transcripts and tickets in any MCP client.
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/petrsovadina/mcp-atlassian'
If you have feedback or need assistance with the MCP directory API, please join our Discord server