MCP Jira Server
@SoorajChandran
About MCP Jira Server
MCP to talk to Jira from cursor
Config
Add this server to your MCP-compatible client using the configuration below.
{
"mcpServers": {
"mcp-jira-server-soorajchandran": {
"command": "python",
"args": [
"-m",
"venv",
"venv"
]
}
}
}Tools
No tools detected
We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.
Overview
What is MCP Jira Server?
MCP Jira Server is an MCP (Model Context Protocol) server that integrates with Jira for issue management. It is intended for developers and teams who want to programmatically create, read, update, search, and manage Jira issues and epics via MCP.
How to use MCP Jira Server?
Clone the repository, install dependencies (Python 3.8+ required), copy .env.example to .env, and fill in your Jira credentials (server URL, email, API token). Then run python src/main.py. The server starts on http://localhost:8000.
Key features of MCP Jira Server
- Create, read, and update Jira issues
- Search for issues across projects
- Epic management with subtask support
- Personal issue tracking
- Create issues from product requirement documents
Use cases of MCP Jira Server
- Automate creation of Jira issues from PRDs or design documents
- Manage epics and their subtasks for project planning
- Track and update personal assigned issues programmatically
- Search for issues by criteria and retrieve details
FAQ from MCP Jira Server
What are the prerequisites for running MCP Jira Server?
Python 3.8+, a Jira account with API access, and a Jira API token are required.
How do I configure MCP Jira Server?
Copy .env.example to .env and set JIRA_SERVER (your Jira instance URL), JIRA_USER (your email), and JIRA_TOKEN (your API token). Optional parameters include JIRA_TIMEOUT (default 30), JIRA_MAX_RESULTS (default 50), and MCP_SERVER_PORT (default 8000).
What default port does MCP Jira Server use?
The server runs on port 8000 by default, configurable via the MCP_SERVER_PORT environment variable.
Are there any security considerations?
Never commit your .env file, keep your Jira API token secure, use HTTPS in production, and consider adding additional authentication for the API endpoints.
What are the configurable parameters for the Jira API?
JIRA_TIMEOUT sets the API timeout in seconds (default 30), and JIRA_MAX_RESULTS limits the maximum results per page (default 50).
Frequently asked questions
What are the prerequisites for running MCP Jira Server?
Python 3.8+, a Jira account with API access, and a Jira API token are required.
How do I configure MCP Jira Server?
Copy `.env.example` to `.env` and set `JIRA_SERVER` (your Jira instance URL), `JIRA_USER` (your email), and `JIRA_TOKEN` (your API token). Optional parameters include `JIRA_TIMEOUT` (default 30), `JIRA_MAX_RESULTS` (default 50), and `MCP_SERVER_PORT` (default 8000).
What default port does MCP Jira Server use?
The server runs on port 8000 by default, configurable via the `MCP_SERVER_PORT` environment variable.
Are there any security considerations?
Never commit your `.env` file, keep your Jira API token secure, use HTTPS in production, and consider adding additional authentication for the API endpoints.
What are the configurable parameters for the Jira API?
`JIRA_TIMEOUT` sets the API timeout in seconds (default 30), and `JIRA_MAX_RESULTS` limits the maximum results per page (default 50).
Basic information
More Version Control MCP servers
Atlassian Data Center MCP
b1ffMCP servers for the Atlassian products (Bitbucket, Confluence, JIRA) of the Data Center version
Github Mcp Server
githubGitHub's official MCP Server
MCP Git Ingest
adhikaspA Model Context Protocol (MCP) server that helps read GitHub repository structure and important files.
Code Review Server
crazyrabbitLTCA MCP server for code reviews
MCP Linear
tacticlaunchMCP server that enables AI assistants to interact with Linear project management system through natural language, allowing users to retrieve, create, and update issues, projects, and teams.
Comments