Skip to content

Release Notes v0.3.0

Adds Jira support with 18 MCP tools, shared Atlassian auth, and renames the module from mcp-confluence to mcp-atlassian.

Highlights

  • Jira Skill: 18 MCP tools for issues, agile boards, sprints, and reports via Go-Atlassian
  • Dual-Skill Server: One MCP server serving both Confluence and Jira tools
  • Shared Auth: Single ATLASSIAN_URL credential set for both products
  • Module Rename: mcp-confluence is now mcp-atlassian

Breaking Changes

  • Module path changed from github.com/plexusone/mcp-confluence to github.com/plexusone/mcp-atlassian
  • Removed confluence/, storage/, mcpserver/, and cmd/mcp-confluence/ packages (migrated to github.com/grokify/go-atlassian)
  • Env var CONFLUENCE_BASE_URL replaced by ATLASSIAN_URL (no /wiki suffix)

New Features

Jira Skill

Omniskill-based Jira skill with 18 tools wrapping github.com/grokify/go-atlassian/jira:

Category Tools
Issues jira_get_issue, jira_search, jira_create_issue, jira_update_issue, jira_clone_issue, jira_bulk_update
Comments jira_add_comment, jira_get_comments
Workflow jira_get_transitions, jira_transition_issue
Agile jira_get_boards, jira_get_sprints, jira_move_to_sprint
Projects jira_get_projects
Reports jira_velocity_report, jira_burndown_report, jira_worklog_report, jira_cycle_time_report

Dual-Skill MCP Server

The new cmd/mcp-atlassian binary registers both Confluence and Jira skills:

import (
    confskill "github.com/plexusone/mcp-atlassian/skills/confluence"
    jiraskill "github.com/plexusone/mcp-atlassian/skills/jira"
)

Supports stdio and HTTP modes with OAuth 2.1/PKCE and optional ngrok tunneling.

Shared Atlassian Auth

One set of credentials serves both products:

export ATLASSIAN_URL="https://example.atlassian.net"
export ATLASSIAN_USERNAME="user@example.com"
export ATLASSIAN_API_TOKEN="your-api-token"

Confluence appends /wiki automatically. Legacy CONFLUENCE_BASE_URL is still accepted (with /wiki stripped).

Dependencies

Dependency Version Change
github.com/grokify/go-atlassian v0.32.0 Upgraded
github.com/plexusone/omniskill v0.9.0 v0.8.0 -> v0.9.0

Migration Guide

Update Installation

# Old
go install github.com/plexusone/mcp-confluence/cmd/mcp-confluence@latest

# New
go install github.com/plexusone/mcp-atlassian/cmd/mcp-atlassian@latest

Update Environment Variables

# Old
export CONFLUENCE_BASE_URL="https://example.atlassian.net/wiki"

# New
export ATLASSIAN_URL="https://example.atlassian.net"

Update Claude Desktop Configuration

{
  "mcpServers": {
    "atlassian": {
      "command": "/path/to/mcp-atlassian",
      "env": {
        "ATLASSIAN_URL": "https://example.atlassian.net",
        "ATLASSIAN_USERNAME": "user@example.com",
        "ATLASSIAN_API_TOKEN": "your-api-token"
      }
    }
  }
}