atlassian-ai-toolkit-mcp
Provides tools for interacting with Confluence, enabling AI agents to manage pages, spaces, and content through the Atlassian API.
Provides tools for interacting with Jira, enabling AI agents to manage issues, projects, and workflows through the Atlassian API.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@atlassian-ai-toolkit-mcpshow me my open Jira issues in project PROJ"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Atlassian AI Toolkit
AI-first SDK, CLI, and MCP server for Atlassian Jira and Confluence
A Bun monorepo containing a typed SDK, an agent-native CLI, and an MCP server for Atlassian Cloud APIs.
Packages
Package | Description |
Core SDK with types, API client, and business logic | |
Command-line interface (Stricli) | |
MCP server for AI assistants (FastMCP) |
Related MCP server: MCP Jira & Confluence Server
Install The CLI
Recommended: Standalone Binary
No Node.js, no npm, no PATH conflicts. One file built with Bun.
macOS and Linux:
curl -fsSL https://raw.githubusercontent.com/spenserhale/atlassian-ai-toolkit/main/scripts/install.sh | shThe script detects your OS + architecture, downloads the matching binary from the latest release, verifies its SHA256, and installs to $HOME/.local/bin/atlassian.
Pin a version with ATLASSIAN_AI_TOOLKIT_VERSION=v0.1.0 or change the install directory with ATLASSIAN_AI_TOOLKIT_INSTALL=$HOME/bin.
Windows: download atlassian-windows-x64.exe from the latest release and put it on your PATH.
Available binaries: atlassian-linux-{x64,arm64}, atlassian-darwin-{x64,arm64}, and atlassian-windows-x64.exe.
Configure
Set Atlassian Cloud credentials in your shell:
export ATLASSIAN_SITE_URL="https://your-site.atlassian.net"
export ATLASSIAN_EMAIL="you@example.com"
export ATLASSIAN_API_TOKEN="your-api-token"Create a scoped API token at https://id.atlassian.com/manage-profile/security/api-tokens.
Destructive Actions
Deletes preview by default. Actual deletion requires --force and a matching --confirm value from the fetched resource.
# Preview the permanent Jira delete
atlassian jira delete PROJ-123
# Permanently delete the Jira issue
atlassian jira delete PROJ-123 --force --confirm PROJ-123
# Preview moving a Confluence page to trash
atlassian confluence delete 123456
# Move a Confluence page to trash
atlassian confluence delete 123456 --force --confirm 123456
# Permanently purge an already-trashed Confluence page
atlassian confluence delete 123456 --purge --force --confirm 123456Getting Started From Source
# Install dependencies
bun install
# Build all packages
bun run build
# Run the CLI
bun run dev:cli -- --help
# Run the MCP server (stdio mode for Claude Desktop)
bun run dev:mcpThe token should be scoped to the smallest set of Jira and Confluence permissions needed for the workflow. Third-party reference implementations live under refs/, which is intentionally gitignored so this repo never vendors or executes unreviewed code with local credentials.
Architecture
packages/sdk/ <-- Types, API client, business logic (foundation)
^ ^
| |
packages/cli/ packages/mcp/
(Stricli) (FastMCP)Both the CLI and MCP server are thin wrappers over the SDK. If the REST API changes, you update the SDK and both consumers get the fix automatically.
Development
# Run tests across all packages
bun test
# Build a specific package
cd packages/sdk && bun run buildAdding a New API Operation
Add types to
packages/sdk/src/types.tsAdd the client method to
packages/sdk/src/client.tsAdd a CLI command in
packages/cli/src/commands/Add an MCP tool in
packages/mcp/src/tools/
Destructive operations must default to a preview path and require an explicit --force flag in the CLI or force: true in MCP tools.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/spenserhale/atlassian-ai-toolkit'
If you have feedback or need assistance with the MCP directory API, please join our Discord server