Skip to content
← Community packages

Search Jira and Confluence through the official Atlassian MCP server.

Browse files

License
MIT
Published
August 23, 2026
Pinned commit
6b2f558
Rating
No ratings yet
Forks
1
Stars
0
Adaptation effort

README

@kody/atlassian-mcp

Intent

Wrap the official Atlassian MCP server (kody.mcp["atlassian"]) so onboarding is add-server-and-authorize. This package is the MCP helper. The existing OAuth/API package @kody/jira stays separate.

This listing is meant to be forked. After you fork, connect your Atlassian workspace. Do not treat the live @kody/atlassian-mcp connection as yours.

Share this listing as https://kody.codes/@kody/atlassian-mcp

Required setup

Add the official Atlassian MCP server, then authorize it.

await kody.mcp_server_add({
  name: 'atlassian',
  url: 'https://mcp.atlassian.com/v1/mcp/authv2',
})

Open the returned authUrl. Helpers then call kody.mcp["atlassian"]. The MCP server name stays atlassian. The -mcp suffix is only the Kody package identity.

Do not register an OAuth app for the one-click path. For OAuth or API-key helpers, use @kody/jira.

Exports

  • kody:@kody/atlassian-mcp — package overview and MCP setup
  • kody:@kody/atlassian-mcp/smoke-test — verify MCP (or report setup)
  • kody:@kody/atlassian-mcp/search-jira
  • kody:@kody/atlassian-mcp/search-confluence

Example

import searchJira from 'kody:@kody/atlassian-mcp/search-jira'

export default async function main() {
  return searchJira()
}
Report this listing

Log in to report this listing.