jira_mcp_server
0
The Jira MCP Server is designed to interface with Jira's API using the Machine Control Protocol. It requires Node.js and a Jira account to function and allows for retrieval of Jira issue information automatically through Codeium.
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