Dynamic Jira Software Cloud MCP Server
Provides tools for interacting with Jira Software Cloud REST API, enabling management of issues, projects, and other Jira resources via automated operations.
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., "@Dynamic Jira Software Cloud MCP Serverlist all issues in project PROJ with status 'In Progress'"
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.
๐ ๏ธ Dynamic Jira Software Cloud MCP Server
An enterprise-ready, premium Model Context Protocol (MCP) server generated dynamically from Atlassian's official Jira Cloud REST API specifications (swagger.json). Built on top of the robust FastMCP framework, it exposes over 100 Jira Software Cloud operations as fully typed tools for LLMs (such as Claude).
This server supports both Stdio (local) and SSE (Server-Sent Events) transport modes, enabling seamless integration into any LLM environment, from desktop applications to cloud-native microservices.
๐ Key Capabilities
Automated Tool Registration: Parses Atlassian's OpenAPI 3.0 specs to register and expose 100+ fully documented tools.
Dynamic Parameter Resolution: Resolves
$reftypes recursively and maps path, query, and request body variables into native Python signatures (str,int,bool,list,dict) with default values.Granular Access Control: Limit operations using
ALLOWED_METHODS(e.g. read-onlygetor fullget,post,put,deleteCRUD permissions).Flexible Transports: Run locally with standard high-performance Stdio or expose via a production-grade SSE server.
Secure Containerization: Built using security best practices with a hardened, non-root user inside a secure Docker base.
Related MCP server: Vestel Jira MCP Server
๐ Repository Blueprint
โโโ .env # Environment configurations
โโโ Dockerfile # hardened, multi-stage production Docker image
โโโ docker-compose.yml # Container orchestration template for SSE server
โโโ pyproject.toml # Poetry/uv dependency specs and pytest configurations
โโโ dynamic_jira_mcp.py # FastMCP server launcher & tool generation engine
โโโ dynamic_jira_mcp_client.py # Asynchronous test client with custom client header validation
โโโ swagger.json # Official Atlassian Jira Software Cloud OpenAPI schema
โโโ openapi/ # Decoupled core modules
โ โโโ __init__.py
โ โโโ openapi_client.py # Schema parser, type mapper, and async HTTP engine
โโโ tests/ # Complete automated unit & integration testing suite
โโโ test_dynamic_jira_mcp.py # Validation suite testing client resolution, mapping & registersโ๏ธ Setup and Configuration
Create a local .env file in the root directory:
# Atlassian Jira Instance URL
JIRA_BASE_URL=https://your-domain.atlassian.net
# Jira Username (Account Email)
JIRA_USERNAME=your-email@example.com
# Jira API Token (Not your login password!)
JIRA_API_TOKEN=your-jira-api-token
# API Operations Scope Control (comma-separated HTTP methods)
ALLOWED_METHODS=get,post,put,delete
# Server Transport Configuration
MCP_TRANSPORT=http
MCP_HOST=0.0.0.0
MCP_PORT=8000
# Client Configuration
MCP_CLIENT_TRANSPORT=http
MCP_CLIENT_HOST=http://localhost
MCP_CLIENT_PORT=8000
MCP_CLIENT_PATH=/mcp
# Optional Client Security Headers
MCP_CLIENT_CLIENT_ID=your-client-id
MCP_CLIENT_CLIENT_SECRET=your-client-secret๐ฅ Claude Desktop Integration
Integrate the MCP server with Claude Desktop by adding it to your claude_desktop_config.json configuration file:
Local Stdio Integration (Recommended)
{
"mcpServers": {
"jira-mcp-stdio": {
"command": "uv",
"args": [
"run",
"--project",
"/home/ollama/python/jira/mcp",
"python",
"/home/ollama/python/jira/mcp/dynamic_jira_mcp.py"
],
"env": {
"JIRA_BASE_URL": "https://your-domain.atlassian.net",
"JIRA_USERNAME": "your-email@example.com",
"JIRA_API_TOKEN": "your-jira-api-token",
"ALLOWED_METHODS": "get,post,put,delete",
"MCP_TRANSPORT": "stdio"
}
}
}
}๐ Launching the Server
1. Locally with uv
Ensure you have uv installed, then run:
uv run python dynamic_jira_mcp.py2. Using Docker
# Build the secure image
docker build -t jira-mcp-server .
# Run the container with environment variables
docker run -p 8000:8000 --env-file .env jira-mcp-server3. Using Docker Compose
# Spin up in detached mode
docker compose up -d
# View log stream
docker logs -f jira-mcp-server๐งช Testing & Diagnostics
1. Execute Automated Pytest Suite
Run our comprehensive verification suite:
uv run python -m pytest -o log_cli=true --log-cli-level=INFO tests/2. Run Asynchronous Test Client
To verify your SSE/HTTP server connectivity along with proper headers transmission:
uv run python dynamic_jira_mcp_client.py๐ค Troubleshooting & Common Issues
401 Unauthorized: Ensure your
JIRA_USERNAMEis correct andJIRA_API_TOKENis generated properly from your Atlassian Security Panel.403 Forbidden: Confirm that the requested action is permitted for your user account inside your target Jira project space and matches allowed settings inside
ALLOWED_METHODS.SSE Connection Timeout: Ensure
MCP_HOSTis bound to0.0.0.0inside containerized setups, allowing public port-mapping to resolve correctly on the host network.
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/ndigrazia/jira_mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server