- Explore MCP Servers
- atlassian-mcp-server
Atlassian Mcp Server
What is Atlassian Mcp Server
Atlassian MCP Server Client is a command-line tool designed for connecting to Model Context Protocol (MCP) servers, particularly for seamless integration with Atlassianβs MCP server. It features an interactive chat interface powered by OpenAI, enabling users to query and interact with remote servers effectively.
Use cases
The client is useful for Atlassian users who want to directly access and manage their Jira and Confluence environments via a command-line interface. It simplifies operations like retrieving Jira issues or searching through Confluence documentation using natural language queries, leveraging AI capabilities for enhanced interaction.
How to use
To use the client, install it via npm and configure your OpenAI API key in the environment file. You can connect to the default Atlassian MCP server or a custom server by running npm run dev
and specifying the server URL. Once connected, an interactive chat prompt appears for user queries.
Key features
Key features include remote MCP server connection, interactive chat interface, automatic OAuth handling for Atlassian services, tool discovery capabilities, streaming AI responses, and cross-platform compatibility across Windows, macOS, and Linux systems.
Where to use
This client can be used in any development or operational setting where Atlassian tools are deployed, such as software development teams and project management environments. It is suitable for environments that require frequent interactions with Jira or Confluence without relying on web browsers.
Overview
What is Atlassian Mcp Server
Atlassian MCP Server Client is a command-line tool designed for connecting to Model Context Protocol (MCP) servers, particularly for seamless integration with Atlassianβs MCP server. It features an interactive chat interface powered by OpenAI, enabling users to query and interact with remote servers effectively.
Use cases
The client is useful for Atlassian users who want to directly access and manage their Jira and Confluence environments via a command-line interface. It simplifies operations like retrieving Jira issues or searching through Confluence documentation using natural language queries, leveraging AI capabilities for enhanced interaction.
How to use
To use the client, install it via npm and configure your OpenAI API key in the environment file. You can connect to the default Atlassian MCP server or a custom server by running npm run dev
and specifying the server URL. Once connected, an interactive chat prompt appears for user queries.
Key features
Key features include remote MCP server connection, interactive chat interface, automatic OAuth handling for Atlassian services, tool discovery capabilities, streaming AI responses, and cross-platform compatibility across Windows, macOS, and Linux systems.
Where to use
This client can be used in any development or operational setting where Atlassian tools are deployed, such as software development teams and project management environments. It is suitable for environments that require frequent interactions with Jira or Confluence without relying on web browsers.
Content
Atlassian MCP Server Client
A command-line client for connecting to Model Context Protocol (MCP) servers, specifically designed to work with Atlassianβs official MCP server integration. This client provides an interactive chat interface powered by OpenAI for seamless interaction with remote MCP servers.
π Features
- Remote MCP Server Connection: Connect to any MCP server via
mcp-remote
- Interactive Chat Interface: Command-line chat interface with OpenAI integration
- OAuth Support: Automatic OAuth handling for Atlassian services through
mcp-remote
- Tool Discovery: Automatically discovers and utilizes tools provided by the MCP server
- Streaming Responses: Real-time streaming of AI responses
- Cross-Platform: Works on Windows, macOS, and Linux
π Prerequisites
- Node.js 18.0.0 or higher
- npm package manager
- OpenAI API key
π οΈ Installation
-
Clone the repository:
git clone <repository-url> cd jira-mcp-server
-
Install dependencies:
npm install
-
Set up environment variables:
cp env.example .env
-
Configure your OpenAI API key:
Edit the.env
file:# OpenAI Configuration OPENAI_API_KEY=your_openai_api_key
π Getting Your OpenAI API Key
- Visit OpenAI API Keys
- Create a new API key
- Copy it to your
.env
file
π Usage
Connect to Atlassianβs Official MCP Server
npm run dev
This will connect to https://mcp.atlassian.com/v1/sse
by default.
Connect to a Custom MCP Server
npm run dev <server-url>
Example:
npm run dev wss://your-custom-mcp-server.com
Development Commands
npm run build
- Compile TypeScript to JavaScriptnpm run dev [server-url]
- Run in development mode (defaults to Atlassian MCP server)npm run clean
- Remove build artifactsnpm run typecheck
- Run TypeScript type checking
π¬ Interactive Chat
Once connected, youβll see an interactive prompt where you can:
- Ask questions about your Atlassian workspace (if connected to Atlassian MCP server)
- Use natural language to interact with any tools provided by the MCP server
- Get AI-powered responses using the connected serverβs capabilities
Example Session
π Connecting to remote MCP server: https://mcp.atlassian.com/v1/sse π OAuth authentication will be handled automatically by mcp-remote π A browser window may open for authentication π€ Connecting to MCP server... π οΈ Setting up tools... β Connected successfully with tools: [list-jira-issues, search-confluence, ...] π¬ Chat with AI (type 'help' for commands, 'exit' to quit): > What are my recent Jira issues? π€ Processing query... Here are your recent Jira issues...
Special Commands
help
- Show available commands and usage informationlist-tools
- Display all tools available from the connected MCP serverexit
orquit
- Exit the application
π§ Configuration
Environment Variables
Variable | Description | Required |
---|---|---|
OPENAI_API_KEY |
Your OpenAI API key | β |
OAuth Authentication
When connecting to Atlassianβs MCP server, OAuth authentication is handled automatically by mcp-remote
. A browser window will open for you to authenticate with your Atlassian account if needed.
ποΈ Architecture
βββββββββββββββββββ βββββββββββββββββββ βββββββββββββββββββ β CLI Client βββββΊβ mcp-remote βββββΊβ MCP Server β β (this app) β β β β (Atlassian) β βββββββββββββββββββ βββββββββββββββββββ βββββββββββββββββββ β β β βΌ βΌ βΌ βββββββββββββββββββ βββββββββββββββββββ βββββββββββββββββββ β OpenAI API β β OAuth Handler β β Atlassian APIs β β β β β β β βββββββββββββββββββ βββββββββββββββββββ βββββββββββββββββββ
π οΈ How It Works
- Connection: The client uses
mcp-remote
to establish a connection to the specified MCP server - Authentication: OAuth flows are handled automatically by
mcp-remote
- Tool Discovery: Available tools are discovered from the MCP server
- Chat Interface: User queries are processed using OpenAI with the discovered tools
- Tool Execution: Tools are called on the remote MCP server as needed
π Troubleshooting
Common Issues
-
βOPENAI_API_KEY is not setβ
- Ensure your
.env
file contains a valid OpenAI API key
- Ensure your
-
βmcp-remote installation failedβ
- The application will try to install
mcp-remote
globally automatically - If it fails, install manually:
npm install -g mcp-remote
- The application will try to install
-
OAuth authentication fails
- Ensure you have access to the Atlassian workspace
- Check that your browser allows popups from the authentication domain
- Verify network connectivity
-
Connection timeout
- Check if the MCP server URL is correct and accessible
- Verify firewall settings allow outbound connections
Debug Mode
For verbose logging, you can check the mcp-remote
logs or modify the source code to add more logging.
π Dependencies
- @ai-sdk/openai: OpenAI integration for AI capabilities
- @modelcontextprotocol/sdk: Official MCP SDK for client implementation
- mcp-remote: Remote MCP server connection utility (auto-installed)
- ai: AI SDK for tool integration and streaming
π Learn More
- Model Context Protocol - Official MCP documentation
- Atlassian MCP Server - Atlassianβs official MCP server
- OpenAI API Documentation - OpenAI API reference
Note: This is a client application for connecting to MCP servers. For the actual MCP server implementation, refer to the official Atlassian MCP server documentation.