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
AppContext MCP
AppContext gives your AI coding agent instant visual insight into what you're developing, so it can fix issues, refine UI, and accelerate your development workflow in real time.
Google Calendar
Interact with Google Calendar APIs to manage events and calendars.
ClickUp
Integrate ClickUp with AI applications to manage tasks, spaces, lists, and folders.
MCP Workflow Orchestration Server
Enables AI agents to discover, create, and execute complex, multi-step workflows defined in simple YAML files.
AI Collaboration MCP Server
An MCP server for AI-to-AI collaboration, enabling autonomous workflows and role-based task management between different AI models.
Twenty CRM
Interact with the Twenty CRM API through chat-based tools.
Spotify MCP Server
Control Spotify with natural language. Enables search, playback control, queue management, and device control using conversational commands.
Todoist MCP
Manage your Todoist tasks using natural language with Claude.
MeshSeeks
A multi-agent mesh network designed for completing AI tasks in parallel.
Screen View
Capture and analyze screenshots using the Claude Vision API.