Skip to main content
Glama

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 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

Vyhledávání v Confluence obsahu pomocí CQL.

{
  "query": "type=page AND space='Engineering'", // CQL dotaz
  "limit": 10 // volitelný limit výsledků (1-50)
}

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:

  1. Forkovat repozitář

  2. Vytvořit feature branch

  3. Commitnout vaše změny

  4. Pushnout branch

  5. Vytvořit Pull Request

Licence

MIT

Available Tools

2 tools

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 2 tool updatesv1.0.0
    • First observedconfluence_search
    • First observedjira_search

TDQS

C2.9/5.0

Scored across 2 tools

Disambiguation5/5

The two tools are clearly distinct: one searches Confluence content using CQL, and the other searches Jira issues using JQL. There is no overlap in purpose or target resource, making misselection highly unlikely.

Naming Consistency5/5

Both tools follow a consistent naming pattern: [product]_[action] (confluence_search, jira_search). This verb_noun style is uniform and predictable across the set.

Tool Count2/5

With only two tools, the server feels thin for covering Atlassian's ecosystem. While Confluence and Jira are major products, the lack of additional operations (e.g., create, update, delete) or coverage of other Atlassian tools (e.g., Bitbucket, Trello) makes the scope appear incomplete.

Completeness2/5

The server only provides search functionality for two Atlassian products, missing essential CRUD operations (e.g., create pages in Confluence, update issues in Jira) and other lifecycle actions. This creates significant gaps that will limit agent workflows and likely cause failures in broader tasks.

Maintenance

ActivityInactive
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    A
    maintenance
    Model 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.
    5,890
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    Model 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.
    1
    MIT
  • -
    license
    Not graded
    quality
    Not graded
    maintenance
    A 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.
    -