jira_mcp_server
If you are the rightful owner of jira_mcp_server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
This is a Machine Control Protocol (MCP) server for interacting with Jira's API.
Jira MCP Server
This is a Machine Control Protocol (MCP) server for interacting with Jira's API.
Prerequisites
- Node.js (v16 or higher)
- npm or yarn
- A Jira account with API access
Setup
-
Install dependencies:
npm install
-
Configure Codeium MCP:
- Add the following configuration to your Codeium MCP config file (
~/.codeium/windsurf/mcp_config.json
):
{ "mcpServers": { "jira": { "command": "npx", "args": [ "-y", "tsx", "/path/to/jira_mcp/main.ts" ], "env": { "JIRA_USERNAME": "your_username", "JIRA_API_KEY": "your_api_key", "JIRA_BASE_URL": "your_jira_instance_url" } } } }
- Add the following configuration to your Codeium MCP config file (
Usage
The MCP server will be automatically started by Codeium when needed. Available commands:
get_issue
: Retrieve information about a specific Jira issue by key (e.g., "RMPRE-123")
Development
To run the server locally for development:
npm start