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: MCP Atlassian
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