Skip to main content
Glama
thisIsRasel

jira-mcp-server

by thisIsRasel

jira-mcp-server

Stdio-based MCP server exposing Jira tools (search, get/create issue, comment, assign, transition, list projects).

Image: thisisrasel/jira-mcp-server (tags: latest, 1.0.0)

Environment variables

Var

Required

Notes

JIRA_BASE_URL

yes

e.g. https://your-jira-instance.com

JIRA_TOKEN

no

Bearer auth; if set, takes priority over username/password

JIRA_USERNAME

only if no JIRA_TOKEN

basic auth

JIRA_PASSWORD

only if no JIRA_TOKEN

basic auth

See .env.example.

Related MCP server: jira-cli-mcp

Run via MCP client

Add to your MCP client config (e.g. Claude Desktop claude_desktop_config.json), passing credentials as env vars on the docker run command rather than baking them into the image:

{
  "mcpServers": {
    "jira": {
      "command": "docker",
      "args": [
        "run", "-i", "--rm",
        "-e", "JIRA_BASE_URL",
        "-e", "JIRA_TOKEN",
        "thisisrasel/jira-mcp-server:latest"
      ],
      "env": {
        "JIRA_BASE_URL": "https://your-jira-instance.com",
        "JIRA_TOKEN": "your-token"
      }
    }
  }
}

For basic auth instead of a token, swap the -e/env entries for JIRA_USERNAME and JIRA_PASSWORD.

Build & push

docker build -t thisisrasel/jira-mcp-server:1.0.0 -t thisisrasel/jira-mcp-server:latest .
docker push thisisrasel/jira-mcp-server:1.0.0
docker push thisisrasel/jira-mcp-server:latest

Available Tools

7 tools
jira_add_commentAdd Jira CommentC

Add comment to issue

ParametersJSON Schema
NameRequiredDescriptionDefault
commentYes
issueKeyYes

TDQS

C2.5/5.0
Behavior1/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden of disclosing safety and side effects, but it only states the basic action. It does not mention whether authentication is required, whether the operation is reversible, or what the response contains, making the tool's behavior opaque.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single sentence with no extraneous words, making it highly concise. However, the extreme brevity under-specifies the tool, leaving gaps that reduce its overall effectiveness despite the clean structure.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a mutation tool with no annotations, no output schema, and undocumented parameters, the description is incomplete. It does not address when to use the tool, parameter semantics, or behavioral expectations, leaving the agent under-informed for correct invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has two required string parameters with zero description coverage. The description does not elaborate on the meaning, format, or expected values of `issueKey` or `comment`, failing to compensate for the absence of schema-level documentation.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description 'Add comment to issue' clearly states the action (add) and the target (comment to issue), distinguishing it from sibling tools like search, create, and transition. This is a specific verb+resource combination that leaves no ambiguity about the tool's function.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is provided about when to use this tool relative to alternatives such as jira_transition_issue or jira_create_issue. The description does not mention prerequisites, exclusions, or appropriate contexts, leaving the agent without selection guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

jira_assign_issueAssign Jira IssueC

Assign issue to user

ParametersJSON Schema
NameRequiredDescriptionDefault
issueKeyYes
usernameYes

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full responsibility for disclosing behavioral traits. It only says 'Assign issue to user' without mentioning effects like overwriting existing assignee, required permissions, or error behavior for invalid issue/user, so it fails to provide necessary transparency.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a clean, front-loaded single sentence with no filler. It is concise and easy to parse, though it could be slightly expanded with behavioral or usage context without harming conciseness.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a mutation tool with no annotations and no output schema, the description is too sparse. It omits details about how the assignment behaves (e.g., whether prior assignee is replaced), permission requirements, error cases, and expected outcomes. This is insufficient for an agent to confidently use the tool correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 0% description coverage, and the description does not compensate. It merely paraphrases 'issue' and 'user' without explaining the issueKey format, username type (e.g., display name vs account ID), or any constraints. This leaves the agent without meaningful parameter semantics beyond the schema's bare type declarations.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb 'assign' with a clear resource ('issue') and recipient ('user'), which precisely identifies the tool's function. It also distinguishes this tool from sibling tools like jira_transition_issue (status change) and jira_add_comment, which handle different operations.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is provided on when to use this tool versus alternatives. While the verb 'assign' implies its purpose, there is no explicit statement about appropriate contexts, prerequisites, or when to choose it over sibling tools.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

jira_create_issueCreate Jira IssueC

Create a Jira task

ParametersJSON Schema
NameRequiredDescriptionDefault
summaryYes
issueTypeNoTask
projectKeyYes
descriptionYes

TDQS

C2.3/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

There are no annotations, so the description carries the full burden of disclosing behavioral traits. It only says 'Create a Jira task' without mentioning side effects, validation, permissions, or what happens on success/failure. For a mutation tool, this is a notable gap in transparency.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness2/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is extremely short, but this is under-specification rather than conciseness. It provides no value beyond the title and does not earn its place. A single sentence can be concise and informative, but here it is merely a tautology.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness1/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool has 4 parameters, no annotations, and no output schema, the description is grossly incomplete. It does not explain required fields, defaults, or the outcome of the operation. This is completely inadequate for an agent to invoke the tool correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, and the description adds no information about the parameters (projectKey, summary, description, issueType). It does not compensate for the missing schema descriptions, leaving the agent without any guidance on parameter meanings or formats beyond the bare property names.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description 'Create a Jira task' clearly states the core action (create) and the resource (Jira task/issue). It is distinct from sibling tools like jira_search or jira_get_issue, though it does not explicitly differentiate itself or mention scope. It is clear but lacks the explicit sibling differentiation that would merit a 5.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives, no prerequisites, and no context about the creation workflow. It simply states the action without any usage context, so it fails to help the agent decide when to invoke it.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

jira_get_issueGet Jira IssueC

Retrieve Jira issue details

ParametersJSON Schema
NameRequiredDescriptionDefault
issueKeyYes

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are present, so the description carries the full burden of behavioral disclosure. While 'Retrieve' implies a read-only operation, it does not explain return values, error behavior, or any permissions needed. The description adds minimal context beyond the tool's name.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single concise sentence with no extraneous words. It is front-loaded and effectively communicates the core action.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the low complexity (one parameter, no output schema, no annotations), the description is minimally adequate but incomplete. It does not specify that the issue is retrieved by key or describe the return payload, leaving some gaps for a simple getter tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema has 0% description coverage, and the description does not compensate by explaining the issueKey parameter. Although the parameter name is self-explanatory, the description adds no additional meaning, leaving the param semantics entirely to the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool retrieves Jira issue details, using a specific verb and resource. However, it does not distinguish itself from the sibling tool jira_search, which also returns issue information, so it lacks explicit differentiation.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives like jira_search. It does not mention that this tool is for fetching a single issue by its key, nor does it direct users to jira_search for finding issues.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

jira_projectsList Jira ProjectsC

Get Jira projects

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

C2.8/5.0
Behavior1/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of disclosing behavior. It only states 'Get Jira projects' with no information about return format, pagination, authentication, or side effects. This is completely insufficient for a tool that may have nuances in listing projects.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single concise sentence with no unnecessary words, making it front-loaded and easy to read. It is appropriately sized for a zero-parameter tool, though it is minimal. It earns a 4 for efficiency, not a 5 because it offers no structural detail or helpful breakdown.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the absence of an output schema and annotations, the description should explain what the response looks like or any important behavior. It does neither, leaving the agent uncertain about the return shape (e.g., array of project objects) or possible limits. The description is too sparse to be considered complete for a tool with no other documentation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters, and the schema is trivially complete with 100% coverage. The description adds no parameter-level detail because none is needed. With no parameters, the baseline of 4 applies, and the description does not detract from it.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description 'Get Jira projects' clearly states the action (get) and resource (Jira projects), matching the title 'List Jira Projects.' It is distinguishable from sibling tools like jira_search or jira_get_issue, which focus on issues rather than projects. However, it lacks any qualifiers like 'all' or 'summary,' so it is not fully specific.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives such as jira_search or jira_get_issue. There is no mention of prerequisites, typical use cases, or exclusions. The user is left to infer that this is for listing projects, but no explicit comparison to sibling tools is given.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

jira_transition_issueTransition Jira IssueC

Move issue to another workflow state

ParametersJSON Schema
NameRequiredDescriptionDefault
issueKeyYes
transitionIdYes

TDQS

C2.7/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description has the full burden of disclosing behavioral traits. It only states that the issue is moved to another workflow state, without mentioning side effects, permissions, or failure modes (e.g., invalid transitionId). This is insufficient for a state-changing tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single concise sentence with no unnecessary words, front-loading the core action. It is slightly too sparse, but this is more a completeness issue than a conciseness issue, so the structure itself earns a 4.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a mutation tool with no annotations, no output schema, and minimal parameter info, the one-sentence description is inadequate. It does not explain how to discover valid transition IDs, what happens after the transition, or whether the change is reversible. The absence of response details leaves the agent with an incomplete picture.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, and the description does not compensate by explaining that issueKey identifies the issue and transitionId is a workflow transition identifier. While the parameter names hint at their meaning, the description adds no meaningful detail beyond the raw schema fields.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('move') and resource ('issue') with a target ('another workflow state'), making the action clear. It implicitly distinguishes from siblings like jira_create_issue or jira_search, but does not explicitly name alternatives, so it falls short of a 5.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no guidance on when to use this tool versus alternatives such as jira_assign_issue or jira_create_issue. It also does not explain how to obtain a valid transitionId or the context in which transitions apply, leaving the agent without usage direction.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 7 tool updatesv1.0.0
    • First observedjira_add_comment
    • First observedjira_assign_issue
    • First observedjira_create_issue
    • First observedjira_get_issue
    • First observedjira_projects
    • First observedjira_search
    • First observedjira_transition_issue

TDQS

B3/5.0
Disambiguation5/5

Each tool targets a distinct Jira operation: search, retrieve, create, comment, assign, transition, and list projects. There is no overlap or ambiguity between them.

Naming Consistency4/5

All tools share the 'jira_' prefix and use snake_case, with most following a verb_noun pattern (e.g., jira_get_issue). The exception is jira_projects, which is a simple noun rather than 'list_projects', but this is a minor deviation.

Tool Count5/5

With 7 tools, the server is well-scoped for common Jira operations. Each tool covers a core feature without unnecessary bloat or missing essentials.

Completeness3/5

The set covers create, read, search, comment, assign, and transition, but lacks an update operation (e.g., jira_update_issue), which is a core part of issue lifecycle management. This is a notable gap that agents may need to work around.

Maintenance

ActivitySlowing
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    A
    maintenance
    MCP server for Jira integration with stdio transport. Enables reading, writing, and managing Jira issues and projects directly from Claude Desktop. Supports issue creation, updates, comments, JQL search, and project management.
    23
    587
    14
    MIT
  • F
    license
    B
    quality
    B
    maintenance
    Small MCP server for connecting to enterprise Jira using a personal access token. It enables issue operations, project listing, JQL searches, and attachment handling.
    17
    -

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/thisIsRasel/jira-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server