Jira MCP Server

by MaximilianoGarciaRoe

181 downloads
Not rated
GitHub

Description

# 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 1. Install dependencies: ```bash npm install ``` 2. Configure Codeium MCP: - Add…

About

# 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 1. Install dependencies: ```bash npm install ``` 2. Configure Codeium MCP: - Add the following configuration to your…

Details

Author
MaximilianoGarciaRoe
Downloads
181
Categories
Developer Tools

- Retrieve details of a Jira issue by its key (e.g., "RMPRE-123")
- Works with any Jira instance accessible via API
- Integrates with Codeium’s MCP workflow
- Requires only Node.js v16 or higher

Install dependencies with npm, then configure the server in your Codeium MCP config file (~/.codeium/windsurf/mcp_config.json) by specifying the command npx -y tsx /path/to/jira_mcp/main.ts and setting the environment variables JIRA_USERNAME, JIRA_API_KEY, and JIRA_BASE_URL. The server is started automatically by Codeium when needed. Available commands include get_issue.

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

1. Install dependencies:

   npm install
   

2. 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"
         }
       }
     }
   }
   

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:

```bash
npm start

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.