MCP JIRA Server
Enables interaction with JIRA instances through the JIRA REST API v3, allowing for the creation and management of JIRA issues with rich markdown formatting, automatic conversion to Atlassian Document Format (ADF), and flexible field management including support for both standard and custom fields.
Converts markdown descriptions to properly formatted Atlassian Document Format (ADF), supporting headers, text formatting, code blocks with syntax highlighting, bullet and numbered lists, tables, and other complex formatting elements.
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., "@MCP JIRA Servercreate a bug report for the login page issue with markdown formatting"
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.
MCP JIRA Server
A Model Context Protocol (MCP) server that provides seamless JIRA integration for AI tools. Create and manage JIRA issues with rich markdown formatting, automatic conversion to Atlassian Document Format (ADF), and flexible field management.
Quick Setup with Claude Code
🚀 Let AI Help You Set Up
Copy and paste one of these prompts to your AI coding assistant:
For Setup Help:
Please help me set up the MCP JIRA Server for Claude Code.
Read the setup guide at: SETUP_ASSISTANT_PROMPT.mdFor Usage Examples:
Show me how to use MCP JIRA Server effectively.
Read the usage guide at: USAGE_ASSISTANT_PROMPT.mdâš¡ Quick Install (if you know what you're doing)
# Install UV if not already installed:
curl -LsSf https://astral.sh/uv/install.sh | sh
# Configure JIRA settings via web UI:
uvx --from ctf-mcp-jira ctf-mcp-jira-server --ui
# Add to Claude Code:
claude mcp add -t stdio mcp_jira "uvx" -- "--from" "ctf-mcp-jira" "ctf-mcp-jira-server"Then restart Claude Code. See full instructions below.
Related MCP server: Jira MCP Server
Overview
This MCP server enables AI assistants to interact directly with JIRA instances through the JIRA REST API v3. It handles the complexity of markdown-to-ADF conversion, field mapping, and multi-site configuration, allowing AI tools to create well-formatted JIRA issues with minimal setup.
Key architectural components:
MCP Server: FastMCP-based server with stdio/SSE transport support
JIRA Client: Direct REST API integration with authentication handling
Markdown Converter: Converts markdown to Atlassian Document Format (ADF)
Configuration System: Multi-site JIRA configuration with flexible site selection
Field Management: Support for both standard and custom JIRA fields
Features
Rich Markdown Support: Convert markdown descriptions to properly formatted ADF with support for:
Headers, paragraphs, and text formatting (bold, italic, inline code)
Fenced code blocks with syntax highlighting
Bullet and numbered lists
Tables and complex formatting elements
Flexible Field Management:
Create and update JIRA issues with standard fields: project, summary, description, issue type.
Robust assignee handling: Provide an email address, and the server resolves it to the correct JIRA
accountIdfor reliable assignment.additional_fieldsparameter supports labels, priority, due dates, and other custom fields.Graceful degradation for unavailable fields across different JIRA configurations.
Multi-Site Configuration: Support for multiple JIRA instances with site aliases, configurable in
config.yaml.Comprehensive Error Handling: Detailed error messages and logging.
Transport Flexibility: Support for both stdio and SSE transport modes.
Installation
Recommended Method
Use uvx to run MCP JIRA Server without persistent installation:
# Install UV if not already installed
# macOS/Linux:
curl -LsSf https://astral.sh/uv/install.sh | sh
# Windows (PowerShell):
powershell -c "irm https://astral.sh/uv/install.ps1 | iex"
# Configure JIRA settings via web UI:
uvx --from ctf-mcp-jira ctf-mcp-jira-server --ui
# This launches a web interface at http://localhost:8501 for configurationBenefits of uvx:
No persistent installation to manage
Always runs in a fresh, isolated environment
Automatically downloads updates when available
No "uninstall and reinstall" issues
Note: uvx downloads the package on first use and caches it. Subsequent runs are faster but still use a fresh environment.
From Source (Development)
# Clone the repository
git clone https://github.com/codingthefuturewithai/mcp_jira.git
cd mcp_jira
# Create and activate a virtual environment using UV
uv venv
source .venv/bin/activate # On Windows: .venv\Scripts\activate
# Install in development mode
uv pip install -e .Troubleshooting Installation
Common Issues:
"Command not found": Ensure UV is installed and in your PATH
Port already in use: Use
--ui-port 8502(or another port) when launching the UIConnection errors: Check your internet connection as uvx downloads packages on demand
For development, always use a virtual environment
Platform-Specific Issues:
Windows: Run PowerShell as Administrator if you encounter permission errors
macOS: If you get SSL errors, ensure certificates are updated:
brew install ca-certificatesLinux: May need to install additional system packages:
sudo apt-get install python3-dev
For detailed troubleshooting, see the Confluence documentation.
Configuration
JIRA Configuration
The server requires a config.yaml file to connect to your JIRA instance(s). The server will attempt to load this file from the following locations, in order of precedence:
The path specified by the
--configcommand-line argument.The path specified by the
MCP_JIRA_CONFIG_PATHenvironment variable.The default OS-specific user configuration directory:
Linux:
~/.config/mcp_jira/config.yamlmacOS:
~/Library/Application Support/mcp_jira/config.yamlWindows:
%APPDATA%\MCPJira\mcp_jira\config.yaml(Note:%APPDATA%usually resolves toC:\Users\<username>\AppData\Roaming)
If the configuration file is not found at any of these locations, the server will automatically create the necessary directory (if it doesn't exist) and a template config.yaml file at the default OS-specific path. You will then need to edit this template with your actual JIRA site details.
Example of a filled-in config.yaml:
name: "My Company JIRA Integration"
log_level: "INFO" # Supported levels: DEBUG, INFO, WARNING, ERROR, CRITICAL
default_site_alias: "prod_jira"
sites:
prod_jira:
url: "https://mycompany.atlassian.net"
email: "automation-user@mycompany.com"
api_token: "abc123xyz789efg_your_token_here_jkl"
cloud: true
dev_jira:
url: "https://dev-mycompany.atlassian.net"
email: "dev-automation@mycompany.com"
api_token: "another_token_for_dev_environment"
cloud: true
# Optional: Advanced logging configuration (defaults are usually sufficient)
# log_file_path: "/var/log/custom_mcp_jira/activity.log" # Overrides default log file paths
# log_max_bytes: 20971520 # Max log file size in bytes (e.g., 20MB)
# log_backup_count: 10 # Number of backup log files to keepJIRA API Token
Log into your JIRA instance.
Go to Account Settings (usually by clicking your avatar/profile picture).
Navigate to Security > API token (the exact path might vary slightly depending on your JIRA version).
Click Create API token.
Give your token a descriptive label (e.g.,
mcp_jira_server_token).Copy the generated token immediately. You will not be able to see it again.
Add the copied token to your
config.yamlfile.
Configuration Editor UI
This project includes a web-based configuration editor built with Streamlit to easily manage your config.yaml file.
Features
View and edit all general settings (Server Name, Log Level, Default Site Alias).
View, edit, add, and delete JIRA site configurations (Alias, URL, Email, API Token, Cloud status).
Changes are saved directly to the
config.yamlfile used by the MCP server.The editor automatically uses the same configuration file path logic as the server itself (CLI override, environment variable, or OS-specific default).
Running the Editor
Use the --ui flag with the MCP server command to launch the configuration interface:
# Using uvx (recommended - no installation required)
uvx --from ctf-mcp-jira ctf-mcp-jira-server --ui
# Or specify a custom port
uvx --from ctf-mcp-jira ctf-mcp-jira-server --ui --ui-port 8502This will open your browser with the Streamlit configuration UI at http://localhost:8501 (or your specified port).
Screenshot

Usage
Running the MCP Server
When using with Claude Code, the server is automatically started via the claude mcp add command shown in the quick setup. For manual testing or other uses:
# Run with stdio transport (default) using uvx
uvx --from ctf-mcp-jira ctf-mcp-jira-server
# Run with SSE transport
uvx --from ctf-mcp-jira ctf-mcp-jira-server --transport sse --port 3001
# Use custom configuration file
uvx --from ctf-mcp-jira ctf-mcp-jira-server --config /path/to/config.yaml
# Launch configuration UI
uvx --from ctf-mcp-jira ctf-mcp-jira-server --uiNote: Using uvx ensures the server runs in a fresh, isolated environment each time, avoiding potential dependency conflicts.
Available Tools
This server exposes the following tools for interacting with JIRA:
create_jira_issue
Creates a new JIRA issue. You can specify the project, summary, a detailed description in markdown (which will be converted to JIRA's rich text format), issue type, assignee, and other custom fields.
update_jira_issue
Updates an existing JIRA issue. You can modify fields such as the summary, description (markdown supported), assignee, issue type, or other custom fields. Only the fields you provide will be changed.
search_jira_issues
Search for JIRA issues using JQL (JIRA Query Language) syntax. Specify a JQL query to find issues matching your criteria.
Parameters:
query(required): JQL query string to search for issuessite_alias(optional): Site alias for multi-site configurationsbasic_only(optional, default: False): Controls the level of detail returnedWhen
False(default): Returns comprehensive issue data including all standard fields, issue links, remote links, comments, and worklogsWhen
True: Returns only key, summary, and description for better performance
Returns:
In basic mode: Issue key, summary, and description
In full mode: Complete issue details including:
Standard fields (project, type, status, priority, assignee, dates)
Issue links (relationships to other JIRA issues like blocks, is blocked by, relates to, etc.)
Remote links (web links, Confluence pages, etc.)
Comments with author and timestamp
Worklogs with time tracking information
Example queries:
project = MYPROJECTproject = MYPROJECT AND status = 'In Progress'assignee = currentUser() AND created >= -7d
Example usage:
# Get basic issue information (faster)
search_jira_issues(query="project = ABC", basic_only=True)
# Get comprehensive issue details (default)
search_jira_issues(query="project = ABC AND updated >= -7d")Logging
The server logs activity to both stderr and a rotating log file.
Log File Locations: Log files are stored in OS-specific locations by default:
macOS:
~/Library/Logs/mcp_jira/mcp_jira.logLinux:
If running as root:
/var/log/mcp_jira/mcp_jira.logIf running as non-root:
~/.local/state/mcp_jira/mcp_jira.log
Windows:
%LOCALAPPDATA%\MCPJira\mcp_jira\Logs\mcp_jira.log(Note:%LOCALAPPDATA%usually resolves toC:\Users\<username>\AppData\Local)
Configuration:
Logging behavior (level, file path, rotation settings) is configured via the config.yaml file. See the example config.yaml in the "Configuration" section for details on log_level, log_file_path, log_max_bytes, and log_backup_count.
The log level can also be overridden using the MCP_JIRA_LOG_LEVEL environment variable. If set, this environment variable takes precedence over the log_level in config.yaml.
# Example: Set log level to DEBUG for detailed API communication
MCP_JIRA_LOG_LEVEL=DEBUG mcp_jira-serverValid log levels: DEBUG, INFO (default if not specified), WARNING, ERROR, CRITICAL.
Requirements
Python 3.11 or later (< 3.13)
Operating Systems: Linux, macOS, Windows
Network access to JIRA instance(s)
Valid JIRA API token(s)
Development
See DEVELOPMENT.md for detailed development instructions, including:
Setting up the development environment
Testing with MCP Inspector
Running tests
Contributing guidelines
Architecture overview
Troubleshooting
Common Issues
Authentication Errors
Verify API token is correct and hasn't expired
Ensure email address matches JIRA account
Check JIRA instance URL is accessible
Field Errors
Use
additional_fieldsfor custom or optional fieldsCheck field availability in your JIRA configuration
Server gracefully ignores unavailable fields
Markdown Conversion Issues
Ensure fenced code blocks use proper syntax
Complex tables may need manual formatting
Check logs for conversion warnings
Connection Issues
Verify network connectivity to JIRA instance
Check firewall/proxy settings
Ensure JIRA REST API v3 is accessible
License
This project is licensed under the MIT License. See the LICENSE file for details.
Author
Coding the Future with AI
GitHub: codingthefuturewithai
Available Tools
4 toolscreate_jira_issueC
Creates a new JIRA issue from Markdown description.
| Name | Required | Description | Default |
|---|---|---|---|
| project | Yes | ||
| summary | Yes | ||
| description | Yes | ||
| issue_type | No | Task | |
| site_alias | No | ||
| assignee | No | ||
| additional_fields | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden but only states it creates an issue from Markdown. It doesn't disclose behavioral traits like authentication needs, rate limits, error handling, or what happens on success/failure. For a mutation tool with zero annotation coverage, this is a significant gap.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence with zero waste. It's appropriately sized and front-loaded, directly stating the tool's core function without unnecessary elaboration.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a 7-parameter mutation tool with no annotations and no output schema, the description is incomplete. It lacks details on behavior, parameter meanings, and expected outcomes, making it inadequate for an AI agent to use the tool effectively without additional context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate but only mentions 'Markdown description' for the 'description' parameter. It doesn't explain the meaning of other 6 parameters (e.g., 'project', 'summary', 'issue_type'), leaving most semantics undocumented.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Creates') and resource ('new JIRA issue'), specifying it's from Markdown description. It distinguishes from sibling 'update_jira_issue' by focusing on creation rather than modification, though it doesn't explicitly contrast with 'search_jira_issues' or 'echo'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool versus alternatives like 'search_jira_issues' or 'update_jira_issue'. The description implies usage for creating issues from Markdown, but lacks explicit context, prerequisites, or exclusions for tool selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
echoC
Echo back the input text with optional case transformation
| Name | Required | Description | Default |
|---|---|---|---|
| text | Yes | ||
| transform | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It states the tool echoes input text with optional transformation, but doesn't disclose behavioral traits like whether it's read-only, has side effects, rate limits, or error handling. The description is minimal and lacks necessary operational context.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise (one sentence) and front-loaded with the core purpose. Every word earns its place, with no wasted text. It efficiently communicates the essential functionality without unnecessary elaboration.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no annotations, 0% schema coverage, and no output schema, the description is incomplete. It doesn't explain what the tool returns, how transformations work, or any behavioral aspects. For a tool with two parameters and no structured documentation, this minimal description leaves significant gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It mentions 'input text' and 'optional case transformation,' which map to the two parameters (text and transform), but doesn't explain what 'transform' accepts (e.g., uppercase, lowercase) or provide examples. It adds some meaning but doesn't fully compensate for the coverage gap.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Echo back the input text' specifies the verb (echo) and resource (input text), and 'with optional case transformation' adds detail about functionality. However, it doesn't distinguish from sibling tools (Jira-related tools), which is expected since this is a simple utility tool in a different domain.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It mentions 'optional case transformation' but doesn't specify what transformations are available or when to apply them. There's no context about prerequisites, limitations, or relationship to sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_jira_issuesC
Search for Jira issues using JQL (Jira Query Language) syntax
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | ||
| site_alias | No | ||
| basic_only | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It mentions JQL syntax but doesn't cover critical aspects like authentication needs, rate limits, pagination behavior, or error handling. For a search tool with zero annotation coverage, this is a significant gap in transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence with zero waste. It's appropriately sized and front-loaded, directly stating the tool's purpose without unnecessary elaboration. Every word earns its place, making it highly concise.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity of a Jira search tool with 3 parameters, 0% schema coverage, no annotations, and no output schema, the description is incomplete. It lacks details on parameter meanings, behavioral traits, and return values, making it inadequate for the agent to use the tool effectively without additional context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate for undocumented parameters. It only mentions the 'query' parameter indirectly via JQL, leaving 'site_alias' and 'basic_only' completely unexplained. The description adds minimal value beyond the schema, failing to adequately address the coverage gap.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb ('Search for') and resource ('Jira issues'), specifying the method ('using JQL syntax'). It distinguishes from siblings like create_jira_issue and update_jira_issue by focusing on retrieval rather than modification. However, it doesn't explicitly differentiate from potential other search tools, keeping it at 4 instead of 5.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites, context for JQL usage, or comparisons to other tools like echo. This leaves the agent without explicit usage instructions, scoring a 2 for minimal guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
update_jira_issueC
Updates an existing JIRA issue. Only provided fields will be updated.
| Name | Required | Description | Default |
|---|---|---|---|
| issue_key | Yes | ||
| summary | No | ||
| description | No | ||
| issue_type | No | ||
| site_alias | No | ||
| assignee | No | ||
| additional_fields | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden for behavioral disclosure. It mentions 'Only provided fields will be updated,' which adds useful context about partial updates. However, it lacks critical behavioral details: it doesn't specify if this is a mutation requiring permissions, what happens on success/failure, rate limits, or authentication needs. For a mutation tool with 7 parameters, this is a significant gap.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise with two sentences that are front-loaded and waste-free. Every word earns its place by stating the core action and a key behavioral constraint. No unnecessary details or redundancy are present.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given high complexity (7 parameters, nested objects, no output schema, and no annotations), the description is incomplete. It lacks details on return values, error handling, permissions, and parameter meanings. For a mutation tool with significant schema complexity, this minimal description leaves too many gaps for effective agent use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate for undocumented parameters. It only vaguely references 'fields' without explaining what fields are updatable or their semantics (e.g., 'issue_key' as identifier, 'additional_fields' for custom fields). This adds minimal value beyond the schema's property names, failing to adequately address the coverage gap.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb ('Updates') and resource ('an existing JIRA issue'), making the purpose immediately understandable. It distinguishes from 'create_jira_issue' by specifying 'existing' issue. However, it doesn't explicitly differentiate from potential sibling tools like 'search_jira_issues' in terms of update vs. read operations.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives like 'create_jira_issue' or 'search_jira_issues'. There's no mention of prerequisites (e.g., needing an existing issue key), appropriate contexts, or when not to use it. The only implied usage is updating fields, but no explicit alternatives or exclusions are stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
4 tool updates
- First observed
create_jira_issue - First observed
echo - First observed
search_jira_issues - First observed
update_jira_issue
TDQS
Three JIRA-related tools have clear distinct purposes: create, search, and update issues. However, the 'echo' tool is completely unrelated to the JIRA domain, which creates a minor but noticeable ambiguity in the toolset's overall purpose. The JIRA tools themselves are well-differentiated.
The three JIRA tools follow a consistent verb_noun pattern with underscores (create_jira_issue, search_jira_issues, update_jira_issue). However, the 'echo' tool breaks this pattern by using a single word without the JIRA prefix, creating mixed conventions within the set. The naming is readable but not fully consistent.
With only 4 tools, the count feels thin for a JIRA server, especially given that one tool ('echo') is unrelated to JIRA. For a domain as rich as JIRA issue management, having just three core tools (create, search, update) is borderline minimal, lacking expected operations like delete, get details, or comment management.
The toolset has significant gaps for JIRA issue management. While it covers create, search, and update, it lacks essential operations like deleting issues, retrieving specific issue details, adding comments, or managing attachments. The inclusion of an unrelated 'echo' tool further dilutes the domain coverage, making the surface incomplete for typical JIRA workflows.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
A Model Context Protocol server for Wix AI tools
Enable secure connectivity between Sentry issues and debugging data, and LLM clients, using a Model Context Protocol (MCP) server.
A Model Context Protocol (MCP) application for automated GitHub PR analysis and issue management.…
Related MCP Servers
- FlicenseDqualityDmaintenanceA Model Context Protocol server that enables integration with JIRA, allowing users to interact with JIRA tasks and issues through Claude AI assistant.33-
- AlicenseAqualityDmaintenanceA Model Context Protocol server that enables AI assistants like Claude to interact with Jira, allowing for project management tasks such as listing projects, searching issues, creating tickets, and managing sprints through natural language queries.7982TypeScriptMIT
- AlicenseCqualityDmaintenanceA Model Context Protocol server that enables AI assistants like Claude to interact with Jira Cloud instances, providing capabilities for issue management, project listing, and JQL search.1982MIT
- AlicenseBqualityCmaintenanceA Model Context Protocol server that integrates with Atlassian's Jira and Confluence, enabling AI assistants to interact with these tools directly through features like issue management, page creation, and content search.131MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/codingthefuturewithai/mcp_jira'
If you have feedback or need assistance with the MCP directory API, please join our Discord server