Skip to main content
Glama

Jira MCP Server

A Model Context Protocol (MCP) server for interacting with Atlassian Jira. Connect AI assistants like Claude, Cursor AI, and others directly to your Jira projects, issues, and workflows.

Prerequisites

  1. Node.js (version 18 or higher)

  2. Atlassian Jira account with:

    • API token - Generated from Atlassian API Tokens

    • Site name - Your Jira organization name (e.g., mycompany for mycompany.atlassian.net)

Installation

npm install -g jira-mcp-server

From Source

  1. Install dependencies: npm install

  2. Build the project: npm run build

  3. Configure your MCP client (see below)

Configuration

For Cursor Users

Add this to your Cursor MCP configuration (~/.cursor/mcp.json):

{
  "mcpServers": {
    "Jira MCP": {
      "command": "node",
      "args": [
        "/path/to/mcp-server-atlassian-jira/dist/index.js"
      ],
      "env": {
        "ATLASSIAN_SITE_NAME": "your-company",
        "ATLASSIAN_USER_EMAIL": "your.email@company.com",
        "ATLASSIAN_API_TOKEN": "your_api_token"
      }
    }
  }
}

Restart Cursor to activate.

For Claude Desktop Users

Add this to your Claude configuration file (~/.claude/claude_desktop_config.json):

{
  "mcpServers": {
    "jira": {
      "command": "node",
      "args": [
        "/path/to/mcp-server-atlassian-jira/dist/index.js"
      ],
      "env": {
        "ATLASSIAN_SITE_NAME": "your-company",
        "ATLASSIAN_USER_EMAIL": "your.email@company.com",
        "ATLASSIAN_API_TOKEN": "your_api_token"
      }
    }
  }
}

Restart Claude Desktop to activate.

Available Tools

  • jira_get - Read data from any Jira API endpoint

  • jira_post - Create resources (issues, comments, etc.)

  • jira_put - Replace resources

  • jira_patch - Partially update resources

  • jira_delete - Delete resources

  • health_check - Verify server configuration and connectivity

Common Use Cases

Ask your AI assistant:

  • "List all projects I have access to"

  • "Show me issues assigned to me that are in progress"

  • "Find all high priority issues in the DEV project"

  • "Get full details about issue PROJ-456 including comments"

  • "Add a comment to PROJ-456: 'Code review completed'"

  • "Create a new bug in the MOBILE project"

Troubleshooting

Authentication Issues

  1. Verify your API token is active at Atlassian API Tokens

  2. Check your site name format: https://mycompany.atlassian.net → site name is mycompany

  3. Test credentials: node dist/index.js get --path "/rest/api/3/myself"

Common Errors

  • 403 Forbidden: Check API token permissions

  • 404 Not Found: Verify project keys and issue IDs are correct

  • No results: Try broader search criteria or validate JQL syntax

Integration Issues

  • Cursor: Restart Cursor after updating ~/.cursor/mcp.json

  • Claude Desktop: Restart Claude Desktop after updating config file

FAQ

What permissions do I need?
Your Atlassian account needs access to Jira with appropriate project permissions.

Does this work with Jira Server?
Currently supports Jira Cloud only.

Is my data secure?
Yes! This tool runs entirely on your local machine and uses your own Jira credentials.

Available Tools

6 tools
health_checkHealth checkC

Verify Jira MCP server configuration and connectivity.

ParametersJSON Schema
NameRequiredDescriptionDefault
siteNameNoOptional: Specify your Atlassian site name

TDQS

C2.9/5.0
Behavior2/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 behavioral disclosure. It states the tool verifies configuration and connectivity, implying a read-only diagnostic operation, but doesn't specify what happens if verification fails, whether it requires authentication, or what the output looks like. For a tool with no annotations, this leaves significant gaps in understanding its behavior.

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, clear sentence: 'Verify Jira MCP server configuration and connectivity.' It is front-loaded with the core purpose, has no unnecessary words, and efficiently conveys the essential information without waste, making it highly concise and well-structured.

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 tool's diagnostic nature and lack of annotations or output schema, the description is incomplete. It doesn't explain what the verification entails, what results to expect (e.g., success/failure indicators), or how it interacts with the Jira system. For a tool that likely returns status information, more context is needed to guide the agent effectively.

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

Parameters3/5

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

The input schema has 100% description coverage, with the parameter 'siteName' documented as 'Optional: Specify your Atlassian site name.' The description doesn't add any meaning beyond this, such as explaining when to use the parameter or its impact on the verification process. With high schema coverage, the baseline score of 3 is appropriate, as the schema handles the parameter documentation adequately.

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's purpose: 'Verify Jira MCP server configuration and connectivity.' It specifies the verb ('verify') and the target ('Jira MCP server configuration and connectivity'), making it easy to understand what the tool does. However, it doesn't explicitly differentiate from sibling tools like jira_get or jira_post, which might also involve connectivity checks indirectly.

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. It doesn't mention prerequisites, such as whether it should be used before other operations, or contrast it with sibling tools like jira_get for data retrieval. The lack of usage context leaves the agent without clear direction on when this tool is appropriate.

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

jira_deleteJira DELETE RequestA

Delete Jira resources. Returns TOON format by default.

Output format: TOON (default) or JSON (outputFormat: "json")

Common operations:

  1. Delete issue: /rest/api/3/issue/{issueIdOrKey} Query param: deleteSubtasks=true to delete subtasks

  2. Delete comment: /rest/api/3/issue/{issueIdOrKey}/comment/{commentId}

  3. Delete worklog: /rest/api/3/issue/{issueIdOrKey}/worklog/{worklogId}

  4. Delete attachment: /rest/api/3/attachment/{attachmentId}

  5. Remove watcher: /rest/api/3/issue/{issueIdOrKey}/watchers Query param: accountId={accountId}

Note: Most DELETE endpoints return 204 No Content on success.

API reference: https://developer.atlassian.com/cloud/jira/platform/rest/v3/

ParametersJSON Schema
NameRequiredDescriptionDefault
pathYesThe Jira API endpoint path (without base URL). Must start with "/". Examples: "/rest/api/3/project", "/rest/api/3/search/jql", "/rest/api/3/issue/{issueIdOrKey}"
queryParamsNoOptional query parameters as key-value pairs. Examples: {"maxResults": "50", "startAt": "0", "jql": "project=PROJ", "fields": "summary,status"}
jqNoJMESPath expression to filter/transform the response. IMPORTANT: Always use this to extract only needed fields and reduce token costs. Examples: "issues[*].{key: key, summary: fields.summary}" (extract specific fields), "issues[0]" (first result), "issues[*].key" (keys only). See https://jmespath.org
outputFormatNoOutput format: "toon" (default, 30-60% fewer tokens) or "json". TOON is optimized for LLMs with tabular arrays and minimal syntax.

TDQS

A4.6/5.0
Behavior4/5

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

Without annotations, the description carries the full burden. It discloses default output format (TOON), the option for JSON, the typical 204 No Content response, and includes endpoint examples. It does not mention the potential irreversible nature of deletions or authentication requirements, which would be useful for a destructive tool.

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 well-structured with clear sections for output format and common operations. Though moderately long, every section is informative and non-redundant. The numbered list for operations enhances scannability, and the summary sentence is front-loaded.

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

Completeness5/5

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

The description covers output format, specific paths, query params, response status, and provides an API reference. Given that there is no output schema, this is sufficiently complete for a delete tool, which often returns 204 or minimal bodies.

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

Parameters5/5

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

The schema descriptions are already thorough (100% coverage), and the description adds significant value by giving exact endpoint templates and query parameters for each operation, such as '/rest/api/3/issue/{issueIdOrKey}' and 'deleteSubtasks=true'. This goes well beyond the raw schema and helps the agent construct valid requests.

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 clearly states 'Delete Jira resources' and lists specific operations (delete issue, comment, worklog, attachment, watcher), which distinguishes it from sibling tools like jira_get, jira_post, etc. The verb 'Delete' and resource examples make the purpose unmistakable.

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

Usage Guidelines4/5

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

The description provides concrete common operations with endpoint patterns, making it clear when to use this tool for various delete tasks. However, it does not explicitly contrast with alternatives or state when not to use it, though the name and sibling context make this largely implicit.

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

jira_getJira GET RequestA

Read any Jira data. Returns TOON format by default (30-60% fewer tokens than JSON).

IMPORTANT - Cost Optimization:

  • ALWAYS use jq param to filter response fields. Unfiltered responses are very expensive!

  • Use maxResults query param to restrict result count (e.g., maxResults: "5")

  • If unsure about available fields, first fetch ONE item with maxResults: "1" and NO jq filter to explore the schema, then use jq in subsequent calls

Schema Discovery Pattern:

  1. First call: path: "/rest/api/3/search/jql", queryParams: {"maxResults": "1", "jql": "project=PROJ"} (no jq) - explore available fields

  2. Then use: jq: "issues[*].{key: key, summary: fields.summary, status: fields.status.name}" - extract only what you need

Output format: TOON (default, token-efficient) or JSON (outputFormat: "json")

Common paths:

  • /rest/api/3/project - list all projects

  • /rest/api/3/project/{projectKeyOrId} - get project details

  • /rest/api/3/search/jql - search issues with JQL (use jql query param). NOTE: /rest/api/3/search is deprecated!

  • /rest/api/3/issue/{issueIdOrKey} - get issue details

  • /rest/api/3/issue/{issueIdOrKey}/comment - list issue comments

  • /rest/api/3/issue/{issueIdOrKey}/worklog - list issue worklogs

  • /rest/api/3/issue/{issueIdOrKey}/transitions - get available transitions

  • /rest/api/3/user/search - search users (use query param)

  • /rest/api/3/status - list all statuses

  • /rest/api/3/issuetype - list issue types

  • /rest/api/3/priority - list priorities

JQ examples: issues[*].key, issues[0], issues[*].{key: key, summary: fields.summary}

Example JQL queries: project=PROJ, assignee=currentUser(), status="In Progress", created >= -7d

API reference: https://developer.atlassian.com/cloud/jira/platform/rest/v3/

ParametersJSON Schema
NameRequiredDescriptionDefault
pathYesThe Jira API endpoint path (without base URL). Must start with "/". Examples: "/rest/api/3/project", "/rest/api/3/search/jql", "/rest/api/3/issue/{issueIdOrKey}"
queryParamsNoOptional query parameters as key-value pairs. Examples: {"maxResults": "50", "startAt": "0", "jql": "project=PROJ", "fields": "summary,status"}
jqNoJMESPath expression to filter/transform the response. IMPORTANT: Always use this to extract only needed fields and reduce token costs. Examples: "issues[*].{key: key, summary: fields.summary}" (extract specific fields), "issues[0]" (first result), "issues[*].key" (keys only). See https://jmespath.org
outputFormatNoOutput format: "toon" (default, 30-60% fewer tokens) or "json". TOON is optimized for LLMs with tabular arrays and minimal syntax.

TDQS

A4.3/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden. It discloses the token-efficient TOON output format, the cost implications of unfiltered responses, and the schema discovery pattern. It does not mention error handling or authentication, but it provides substantial behavioral context beyond what the schema and annotations could offer.

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 long but well-structured with sections, bullet points, and examples. Every section serves a purpose: cost optimization, schema discovery, common paths, and examples. It is front-loaded with the main purpose and cost warning. No extraneous filler, though it could be trimmed slightly without losing value.

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

Completeness4/5

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

Given no annotations and no output schema, the description compensates by covering common paths, JQL examples, output format, and cost-saving techniques. It also links to the full API reference. It does not describe error responses or return structures, but for a read tool with this level of guidance, it is remarkably complete.

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 schema already provides descriptions for all four parameters (100% coverage), so the baseline is 3. The description adds significant value by providing concrete examples for path, queryParams, and jq expressions, and by explaining the outputFormat enum. This goes beyond the schema to clarify usage and cost optimization.

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 opens with "Read any Jira data," which clearly identifies the tool as a read-only GET operation. It distinguishes from sibling tools like jira_post, jira_put, jira_patch, and jira_delete, which are all mutations. The scope is broad but well-defined as covering all Jira data.

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

Usage Guidelines4/5

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

The description provides strong guidance on how to use the tool efficiently (use jq, maxResults, schema discovery pattern) and even warns against deprecated paths. However, it does not explicitly state when to use this tool versus alternatives (e.g., the write siblings), though this is implied by the verb 'Read' and the sibling names.

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

jira_patchJira PATCH RequestA

Partially update Jira resources. Returns TOON format by default.

IMPORTANT - Cost Optimization: Use jq param to filter response fields.

Output format: TOON (default) or JSON (outputFormat: "json")

Common operations:

  1. Update issue fields: /rest/api/3/issue/{issueIdOrKey} body: {"fields": {"summary": "Updated title"}} (only updates specified fields)

  2. Update comment: /rest/api/3/issue/{issueIdOrKey}/comment/{commentId} body: {"body": {"type": "doc", "version": 1, "content": [{"type": "paragraph", "content": [{"type": "text", "text": "Updated comment"}]}]}}

  3. Update worklog: /rest/api/3/issue/{issueIdOrKey}/worklog/{worklogId} body: {"timeSpentSeconds": 7200}

Note: PATCH only updates the fields you specify, leaving others unchanged.

API reference: https://developer.atlassian.com/cloud/jira/platform/rest/v3/

ParametersJSON Schema
NameRequiredDescriptionDefault
pathYesThe Jira API endpoint path (without base URL). Must start with "/". Examples: "/rest/api/3/project", "/rest/api/3/search/jql", "/rest/api/3/issue/{issueIdOrKey}"
queryParamsNoOptional query parameters as key-value pairs. Examples: {"maxResults": "50", "startAt": "0", "jql": "project=PROJ", "fields": "summary,status"}
jqNoJMESPath expression to filter/transform the response. IMPORTANT: Always use this to extract only needed fields and reduce token costs. Examples: "issues[*].{key: key, summary: fields.summary}" (extract specific fields), "issues[0]" (first result), "issues[*].key" (keys only). See https://jmespath.org
outputFormatNoOutput format: "toon" (default, 30-60% fewer tokens) or "json". TOON is optimized for LLMs with tabular arrays and minimal syntax.
bodyYesRequest body as a JSON object. Structure depends on the endpoint. Example for issue: {"fields": {"project": {"key": "PROJ"}, "summary": "Issue title", "issuetype": {"name": "Task"}}}

TDQS

A4.5/5.0
Behavior4/5

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

With no annotations, the description carries the full burden of behavioral disclosure. It discloses the default output format (TOON), the option to switch to JSON, the cost-optimization with jq, and the partial-update semantics. It does not mention authentication, error handling, or rate limits, but the provided behavior is substantial for a generic REST client.

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 well-structured with clear sections for introduction, cost optimization, output format, common operations, and a note on PATCH semantics. Despite its length, each sentence provides valuable information, and key details like partial update behavior and output format are front-loaded.

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

Completeness4/5

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

The description is thorough for a tool with five parameters, nested objects, and no output schema. It covers common use cases, parameter examples, and output behavior. It lacks details on error responses and authorization, but the provided information is sufficient for typical invocation and is complemented by an API reference link.

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

Parameters5/5

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

Although the schema already has 100% coverage, the description adds significant meaning beyond parameter names by providing concrete body examples for different update operations (issue, comment, worklog), path patterns, and jq usage for response filtering. This enriches the schema descriptions with practical usage context.

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 clearly states the tool performs partial updates to Jira resources, using the specific verb 'PATCH' and identifying the resource scope. It distinguishes itself from siblings by emphasizing partial updates that leave other fields unchanged, contrasting with jira_put for full updates.

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

Usage Guidelines4/5

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

The description provides clear context for when to use the tool, such as updating issue fields, comments, and worklogs. It explicitly notes that PATCH only updates specified fields, implying it's for partial modifications. However, it does not explicitly name alternatives like jira_put or jira_post for full updates or creation, though the sibling names make this inferable.

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

jira_postJira POST RequestA

Create Jira resources. Returns TOON format by default (token-efficient).

IMPORTANT - Cost Optimization:

  • Use jq param to extract only needed fields from response (e.g., jq: "{key: key, id: id}")

  • Unfiltered responses include all metadata and are expensive!

Output format: TOON (default) or JSON (outputFormat: "json")

Common operations:

  1. Create issue: /rest/api/3/issue body: {"fields": {"project": {"key": "PROJ"}, "summary": "Issue title", "issuetype": {"name": "Task"}, "description": {"type": "doc", "version": 1, "content": [{"type": "paragraph", "content": [{"type": "text", "text": "Description"}]}]}}}

  2. Add comment: /rest/api/3/issue/{issueIdOrKey}/comment body: {"body": {"type": "doc", "version": 1, "content": [{"type": "paragraph", "content": [{"type": "text", "text": "Comment text"}]}]}}

  3. Add worklog: /rest/api/3/issue/{issueIdOrKey}/worklog body: {"timeSpentSeconds": 3600, "comment": {"type": "doc", "version": 1, "content": [{"type": "paragraph", "content": [{"type": "text", "text": "Work done"}]}]}}

  4. Transition issue: /rest/api/3/issue/{issueIdOrKey}/transitions body: {"transition": {"id": "31"}}

  5. Add attachment: /rest/api/3/issue/{issueIdOrKey}/attachments Note: Requires multipart form data (complex - use Jira UI for attachments)

API reference: https://developer.atlassian.com/cloud/jira/platform/rest/v3/

ParametersJSON Schema
NameRequiredDescriptionDefault
pathYesThe Jira API endpoint path (without base URL). Must start with "/". Examples: "/rest/api/3/project", "/rest/api/3/search/jql", "/rest/api/3/issue/{issueIdOrKey}"
queryParamsNoOptional query parameters as key-value pairs. Examples: {"maxResults": "50", "startAt": "0", "jql": "project=PROJ", "fields": "summary,status"}
jqNoJMESPath expression to filter/transform the response. IMPORTANT: Always use this to extract only needed fields and reduce token costs. Examples: "issues[*].{key: key, summary: fields.summary}" (extract specific fields), "issues[0]" (first result), "issues[*].key" (keys only). See https://jmespath.org
outputFormatNoOutput format: "toon" (default, 30-60% fewer tokens) or "json". TOON is optimized for LLMs with tabular arrays and minimal syntax.
bodyYesRequest body as a JSON object. Structure depends on the endpoint. Example for issue: {"fields": {"project": {"key": "PROJ"}, "summary": "Issue title", "issuetype": {"name": "Task"}}}

TDQS

A4.6/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure and does so effectively. It explains the default TOON output format for token efficiency, provides cost optimization guidance about using the jq parameter, warns about expensive unfiltered responses, and notes complexity for attachments. It also references the API documentation for further details, though it doesn't explicitly mention authentication requirements or rate limits.

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 well-structured and appropriately sized. It starts with the core purpose, then provides critical cost optimization guidance, output format details, and concrete examples of common operations. Every section serves a clear purpose - the examples help users understand parameter usage, the warnings address practical concerns, and the API reference provides further resources. No sentence feels wasted or redundant.

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

Completeness4/5

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

For a complex 5-parameter tool with no annotations and no output schema, the description provides substantial context. It covers the tool's purpose, usage guidelines, behavioral aspects like output format and cost optimization, and parameter usage through examples. The main gap is the lack of explicit information about authentication requirements, error handling, or rate limits, which would be helpful given the tool's complexity and mutation capabilities.

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?

With 100% schema description coverage, the baseline is 3, but the description adds significant value beyond the schema. It provides concrete examples for all parameters in the 'Common operations' section, showing how path, body, and jq work together for specific use cases. The cost optimization guidance around jq usage adds practical context that the schema alone doesn't provide, though it doesn't explain all 5 parameters individually.

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 clearly states the tool's purpose as 'Create Jira resources' with a specific verb ('Create') and resource type ('Jira resources'). It distinguishes from sibling tools like jira_get (read) and jira_delete (delete) by focusing on POST operations for creation. The opening sentence is direct and unambiguous 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 Guidelines5/5

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

The description provides explicit guidance on when to use this tool versus alternatives. It specifies this is for 'Create Jira resources' operations, distinguishing it from jira_get (read), jira_delete (delete), jira_patch/jira_put (update). The 'Common operations' section gives concrete examples of appropriate use cases like creating issues, adding comments, worklogs, and transitions, making it clear when this tool is the right choice.

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

jira_putJira PUT RequestA

Replace Jira resources (full update). Returns TOON format by default.

IMPORTANT - Cost Optimization: Use jq param to extract only needed fields from response

Output format: TOON (default) or JSON (outputFormat: "json")

Common operations:

  1. Update issue (full): /rest/api/3/issue/{issueIdOrKey} body: {"fields": {"summary": "New title", "description": {...}, "assignee": {"accountId": "..."}}}

  2. Update project: /rest/api/3/project/{projectIdOrKey} body: {"name": "New Project Name", "description": "Updated description"}

  3. Set issue property: /rest/api/3/issue/{issueIdOrKey}/properties/{propertyKey} body: {"value": "property value"}

Note: PUT replaces the entire resource. For partial updates, prefer PATCH.

API reference: https://developer.atlassian.com/cloud/jira/platform/rest/v3/

ParametersJSON Schema
NameRequiredDescriptionDefault
pathYesThe Jira API endpoint path (without base URL). Must start with "/". Examples: "/rest/api/3/project", "/rest/api/3/search/jql", "/rest/api/3/issue/{issueIdOrKey}"
queryParamsNoOptional query parameters as key-value pairs. Examples: {"maxResults": "50", "startAt": "0", "jql": "project=PROJ", "fields": "summary,status"}
jqNoJMESPath expression to filter/transform the response. IMPORTANT: Always use this to extract only needed fields and reduce token costs. Examples: "issues[*].{key: key, summary: fields.summary}" (extract specific fields), "issues[0]" (first result), "issues[*].key" (keys only). See https://jmespath.org
outputFormatNoOutput format: "toon" (default, 30-60% fewer tokens) or "json". TOON is optimized for LLMs with tabular arrays and minimal syntax.
bodyYesRequest body as a JSON object. Structure depends on the endpoint. Example for issue: {"fields": {"project": {"key": "PROJ"}, "summary": "Issue title", "issuetype": {"name": "Task"}}}

TDQS

A4.5/5.0
Behavior4/5

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

With no annotations, the description carries the full burden. It discloses that PUT replaces the entire resource (a key destructive behavior), explains the default TOON output format, and highlights the jq parameter for cost optimization. It does not mention permissions or failure modes, but the disclosed behaviors are substantial and useful.

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 well-structured with bold headers, a clear one-sentence summary, and a numbered list of examples. It is slightly longer than minimal, but each section serves a purpose—clarifying output format, cost optimization, and typical endpoints—so it remains efficient.

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

Completeness4/5

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

The tool has no output schema and moderate complexity (5 params, nested body). The description covers key operational contexts: full-update semantics, default output format, and common use cases. It could mention idempotency or authentication, but HTTP PUT semantics and the API reference provide sufficient completeness for an agent to invoke it correctly.

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?

Schema coverage is 100%, so baseline is 3. The description adds value beyond the schema by providing concrete example paths and bodies for common operations, and by reinforcing the purpose of jq in reducing token costs. This goes beyond simple schema repetition.

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 opens with 'Replace Jira resources (full update)' which precisely states the action and scope. The note 'For partial updates, prefer PATCH' explicitly distinguishes it from the sibling jira_patch tool, making the purpose unambiguous.

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

Usage Guidelines5/5

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

Usage guidance is explicit: it states when to use PUT (full replacement) and when not to (partial updates, prefer PATCH). It also provides common operation examples (update issue, update project, set property) and a cost-optimization tip with jq, which further clarifies appropriate usage.

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.

  1. 6 tool updatesv1.0.0
    • First observedhealth_check
    • First observedjira_delete
    • First observedjira_get
    • First observedjira_patch
    • First observedjira_post
    • First observedjira_put

TDQS

A3.9/5.0

Scored across 6 tools

Disambiguation5/5

Each tool is clearly distinguished by HTTP method (health_check, jira_delete, jira_get, jira_patch, jira_post, jira_put), with no overlap in purpose. The health_check serves a distinct configuration verification role, while the others map cleanly to CRUD operations on Jira resources.

Naming Consistency5/5

All tools follow a consistent naming pattern: 'jira_' prefix followed by the HTTP method (delete, get, patch, post, put), except health_check which still fits the descriptive style. This creates a predictable and readable set where each tool's function is immediately apparent from its name.

Tool Count4/5

Six tools is reasonable for a Jira server, covering core HTTP methods plus health monitoring. While slightly lean compared to more specialized Jira servers, it provides essential CRUD coverage. The count feels purposeful rather than excessive or insufficient for the domain.

Completeness4/5

The tools provide comprehensive CRUD coverage for Jira resources through HTTP method abstraction, with health_check adding operational monitoring. Minor gaps exist (e.g., no dedicated search tool beyond jira_get with JQL), but agents can accomplish most Jira workflows through the provided HTTP method tools and path parameters.

Related MCP Connectors