@kody/atlassian-mcp
README.md
48 lines · 1.3 KB · Markdown@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 setupkody:@kody/atlassian-mcp/smoke-test— verify MCP (or report setup)kody:@kody/atlassian-mcp/search-jirakody:@kody/atlassian-mcp/search-confluence
Example
import searchJira from 'kody:@kody/atlassian-mcp/search-jira'
export default async function main() {
return searchJira()
}