MCP Atlassian Server
Integrate Atlassian products like Confluence and Jira with the Model Context Protocol.
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
Instalace
Installing via Smithery
To install Atlassian Integration Server for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @petrsovadina/mcp-atlassian --client claude
Manual Installation
git clone https://github.com/petrsovadina/mcp-atlassian.git
cd mcp-atlassian
npm install
npm run build
Konfigurace
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-token
Jira
JIRA_URL=https://your-domain.atlassian.net
JIRA_USERNAME=your-email@domain.com
JIRA_API_TOKEN=your-api-token
Použ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
Related Servers
Claude Desktop Extension
An MCP extension for the Claude Desktop application that enables automation and integration.
Rememberizer Common Knowledge
Access personal and team knowledge repositories, including documents and Slack discussions.
TimeCamp
Manage TimeCamp time entries and tasks through its API.
AtlaCP
An MCP interface for Atlassian products, including Jira and Bitbucket.
MCP Orchestro
Trello for Claude Code: AI-powered task management with 60 MCP tools, visual Kanban board, and intelligent orchestration for product teams and developers
EndNote MCP Service
Reads EndNote .enl libraries and exposes their contents through the MCP interface.
CV Forge MCP
Forge powerful, ATS-friendly CVs tailored to any job - an MCP server for intelligent CV generation
WeRead
Access your WeChat Reading (微信读书) bookshelf, notes, highlights, and reviews.
Shannon Thinking
A tool for systematic problem-solving based on Claude Shannon's methodology, breaking down complex problems into structured thoughts.
MeshSeeks
A multi-agent mesh network designed for completing AI tasks in parallel.