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_URLcredential set for both products - Module Rename:
mcp-confluenceis nowmcp-atlassian
Breaking Changes¶
- Module path changed from
github.com/plexusone/mcp-confluencetogithub.com/plexusone/mcp-atlassian - Removed
confluence/,storage/,mcpserver/, andcmd/mcp-confluence/packages (migrated togithub.com/grokify/go-atlassian) - Env var
CONFLUENCE_BASE_URLreplaced byATLASSIAN_URL(no/wikisuffix)
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"