Skip to main content
Glama

linear_getIssueById

Read-onlyIdempotent

Retrieve a specific Linear issue by its ID or identifier (e.g., ABC-123) to access its details and current status.

Instructions

Get a specific issue by ID or identifier (e.g., ABC-123)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesThe ID or identifier of the issue (e.g., ABC-123)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
idNo
urlNo
teamNo
cycleNo
stateNo
titleNo
labelsNo
parentNo
dueDateNo
projectNo
assigneeNo
commentsNo
estimateNo
priorityNo
createdAtNo
sortOrderNo
updatedAtNo
identifierNo
descriptionNo
projectMilestoneNo

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed13 schema fields changedv1.4.2
    • changedOutput schema / properties / assignee / type
      Previous value: -"object"New value: +[
      +  "object",
      +  "null"
      +]
    • changedOutput schema / properties / cycle / type
      Previous value: -"object"New value: +[
      +  "object",
      +  "null"
      +]
    • changedOutput schema / properties / description / type
      Previous value: -"string"New value: +[
      +  "string",
      +  "null"
      +]
    • changedOutput schema / properties / dueDate / type
      Previous value: -"string"New value: +[
      +  "string",
      +  "null"
      +]
    • changedOutput schema / properties / estimate / type
      Previous value: -"number"New value: +[
      +  "number",
      +  "null"
      +]
    • changedOutput schema / properties / labels / items / properties / color / type
      Previous value: -"string"New value: +[
      +  "string",
      +  "null"
      +]
    • changedOutput schema / properties / parent / type
      Previous value: -"object"New value: +[
      +  "object",
      +  "null"
      +]
    • changedOutput schema / properties / priority / type
      Previous value: -"number"New value: +[
      +  "number",
      +  "null"
      +]
    • changedOutput schema / properties / project / type
      Previous value: -"object"New value: +[
      +  "object",
      +  "null"
      +]
    • changedOutput schema / properties / projectMilestone / type
      Previous value: -"object"New value: +[
      +  "object",
      +  "null"
      +]
    • changedOutput schema / properties / sortOrder / type
      Previous value: -"number"New value: +[
      +  "number",
      +  "null"
      +]
    • changedOutput schema / properties / state / properties / color / type
      Previous value: -"string"New value: +[
      +  "string",
      +  "null"
      +]
    • changedOutput schema / properties / url / type
      Previous value: -"string"New value: +[
      +  "string",
      +  "null"
      +]
  2. Changed1 schema field changedv1.4.1
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "properties": {
      +    "assignee": {
      +      "type": "object"
      +    },
      +    "comments": {
      +      "type": "array"
      +    },
      +    "createdAt": {
      +      "type": "string"
      +    },
      +    "cycle": {
      +      "type": "object"
      +    },
      +    "description": {
      +      "type": "string"
      +    },
      +    "dueDate": {
      +      "type": "string"
      +    },
      +    "estimate": {
      +      "type": "number"
      +    },
      +    "id": {
      +      "type": "string"
      +    },
      +    "identifier": {
      +      "type": "string"
      +    },
      +    "labels": {
      +      "items": {
      +        "properties": {
      +          "color": {
      +            "type": "string"
      +          },
      +          "id": {
      +            "type": "string"
      +          },
      +          "name": {
      +            "type": "string"
      +          }
      +        },
      +        "type": "object"
      +      },
      +      "type": "array"
      +    },
      +    "parent": {
      +      "type": "object"
      +    },
      +    "priority": {
      +      "type": "number"
      +    },
      +    "project": {
      +      "type": "object"
      +    },
      +    "projectMilestone": {
      +      "type": "object"
      +    },
      +    "sortOrder": {
      +      "type": "number"
      +    },
      +    "state": {
      +      "properties": {
      +        "color": {
      +          "type": "string"
      +        },
      +        "id": {
      +          "type": "string"
      +        },
      +        "name": {
      +          "type": "string"
      +        },
      +        "type": {
      +          "type": "string"
      +        }
      +      },
      +      "type": "object"
      +    },
      +    "team": {
      +      "type": "object"
      +    },
      +    "title": {
      +      "type": "string"
      +    },
      +    "updatedAt": {
      +      "type": "string"
      +    },
      +    "url": {
      +      "type": "string"
      +    }
      +  },
      +  "type": "object"
      +}
  3. First observed

TDQS

A3.6/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering safety. The description adds no extra behavioral context beyond what is stated (e.g., no mention of not-found behavior, rate limits, or return format). Since annotations are present, the bar is lower, and the description is adequate but adds no additional value.

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, front-loaded sentence with no redundancy. It succinctly conveys the tool's purpose and identifier format with an example, making it highly 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?

For a simple read-only tool with one parameter and an output schema, the description is sufficient for an agent to understand what the tool does and how to call it. It lacks explicit alternative selection guidance, but that falls under usage guidelines. Otherwise, it is complete for this complexity level.

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?

Schema description coverage is 100%, so the input schema fully documents the 'id' parameter with the same example 'ABC-123'. The description repeats this without adding new meaning, so it does not exceed the schema baseline.

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 verb 'Get' and the resource 'a specific issue', with the identifier format 'ID or identifier (e.g., ABC-123)'. It is distinct from sibling tools like linear_getIssues (list) and linear_searchIssues (search) by specifying 'specific issue'.

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 linear_searchIssues or linear_getIssues. It does not mention when to prefer this tool (e.g., when you already have an ID) or when not to use it. The name implies usage for known IDs, but this is not stated.

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

Install Server

Other Tools

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/tacticlaunch/mcp-linear'

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