test-mcp-jira

cruno91/test-mcp-jira

3.1

If you are the rightful owner of test-mcp-jira and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to dayong@mcphub.com.

This document provides a structured overview of an example Model Context Protocol (MCP) server that interfaces with the Jira API to search for work items.

Tools
2
Resources
0
Prompts
0

Example MPC Server - Jira Search

A very basic example of an MPC server that uses the Jira API to search for work items.

Setup

Environment

I recommend using conda to create a virtual environment.

  1. Clone the repository and set up the desired Python environment.
  2. Install the requirements from requirements.txt.

Environment variables

Copy the .env.example file to .env and fill in the required values.

LM Studio

Add the following to your LM Studio MCP configuration:

{
  "mcpServers": {
    ...
    "jira_test": {
      "command": "<path to Python interpreter>",
      "args": [
        "<path to mcp_jira.py>"
      ]
    }
  }
}

Example with conda:

{
  "mcpServers": {
    ...
    "jira_test": {
      "command": "/Users/<username>/miniconda3/envs/<env name>/bin/python",
      "args": [
        "/Users/<username>/Developer/test-mcp-jira/mcp_jira.py"
      ]
    }
  }
}

Usage

jira_whoami

Test the connection to the Jira server.

Prompt: Use the tool jira_whoami.

jira_search

Search for work items. It will return the first 50 results.

Prompt: Use the tool jira_search to find open work items.