linear_get_issue

Pack: linear · Endpoint: https://gateway.pipeworx.io/linear/mcp

Get full details of a Linear issue by ID (e.g., “ABC-123”). Returns title, description, state, priority, assignee, labels, comments, and URL.

Parameters

NameTypeRequiredDescription
idstringyesIssue identifier (e.g., “ABC-123”)

Example call

Arguments

{
  "id": "ENG-42"
}

curl

curl -X POST https://gateway.pipeworx.io/linear/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"linear_get_issue","arguments":{"id":"ENG-42"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('linear_get_issue', {
  "id": "ENG-42"
});

More examples

{
  "id": "PROJ-128"
}

Response shape

FieldTypeDescription
idstringIssue ID
identifierstringIssue identifier (e.g., ABC-123)
titlestringIssue title
descriptionstringIssue description in markdown
stateobject
prioritynumberPriority level
priorityLabelstringHuman-readable priority label
assigneeobject
labelsobject
commentsobject
urlstringIssue URL
createdAtstringCreation timestamp
updatedAtstringLast update timestamp
Full JSON Schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Issue ID"
    },
    "identifier": {
      "type": "string",
      "description": "Issue identifier (e.g., ABC-123)"
    },
    "title": {
      "type": "string",
      "description": "Issue title"
    },
    "description": {
      "type": "string",
      "description": "Issue description in markdown"
    },
    "state": {
      "type": "object",
      "properties": {
        "name": {
          "type": "string",
          "description": "State name"
        }
      }
    },
    "priority": {
      "type": "number",
      "description": "Priority level"
    },
    "priorityLabel": {
      "type": "string",
      "description": "Human-readable priority label"
    },
    "assignee": {
      "type": "object",
      "properties": {
        "name": {
          "type": "string",
          "description": "Assignee name"
        },
        "email": {
          "type": "string",
          "description": "Assignee email"
        }
      }
    },
    "labels": {
      "type": "object",
      "properties": {
        "nodes": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "name": {
                "type": "string",
                "description": "Label name"
              },
              "color": {
                "type": "string",
                "description": "Label color"
              }
            }
          }
        }
      }
    },
    "comments": {
      "type": "object",
      "properties": {
        "nodes": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "body": {
                "type": "string",
                "description": "Comment text"
              },
              "user": {
                "type": "object",
                "properties": {
                  "name": {
                    "type": "string",
                    "description": "User name"
                  }
                }
              },
              "createdAt": {
                "type": "string",
                "description": "Comment creation timestamp"
              }
            }
          }
        }
      }
    },
    "url": {
      "type": "string",
      "description": "Issue URL"
    },
    "createdAt": {
      "type": "string",
      "description": "Creation timestamp"
    },
    "updatedAt": {
      "type": "string",
      "description": "Last update timestamp"
    }
  }
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "linear": {
      "url": "https://gateway.pipeworx.io/linear/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026