Skip to content
v1.1.0MIT

Plan, triage, and report on work in Linear with server-side tools and focused workflows.

MCP servers

Declared configuration, as published in mcp.json. The directory shows indexed content; it never connects to or executes these servers.

linearstreamable-http
{
  "type": "streamable-http",
  "url": "https://mcp.linear.app/mcp"
}

What this package declares

The files a client reads when it loads this plugin, exactly as this revision carries them.

{
  "$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
  "name": "linear",
  "version": "1.1.0",
  "description": "Plan, triage, and report on work in Linear with server-side tools and focused workflows.",
  "author": {
    "name": "opencompany",
    "url": "https://opencompany.com"
  },
  "repository": "https://github.com/useopencompany/plugins/tree/main/linear",
  "license": "MIT",
  "keywords": [
    "linear",
    "issues",
    "triage",
    "project-management"
  ],
  "extensions": {
    "so.opencompany.capabilities": {
      "read": {
        "label": "Read Linear",
        "defaultMode": "on",
        "tools": [
          "list_issues",
          "get_issue",
          "list_comments",
          "list_projects",
          "get_project",
          "list_teams",
          "list_users",
          "list_issue_statuses"
        ]
      },
      "write": {
        "label": "Manage issues",
        "defaultMode": "ask",
        "tools": [
          "save_issue",
          "save_comment"
        ]
      }
    },
    "so.opencompany.events": [
      {
        "id": "issue.created",
        "label": "Issue created",
        "description": "Starts a workflow when a Linear issue is created.",
        "delivery": "webhook",
        "filters": [
          {
            "id": "team",
            "label": "Team",
            "kind": "integration_resource",
            "resourceType": "team",
            "required": false
          },
          {
            "id": "status",
            "label": "Status",
            "kind": "choice",
            "required": false,
            "options": [
              {
                "id": "triage",
                "name": "Triage"
              },
              {
                "id": "backlog",
                "name": "Backlog"
              },
              {
                "id": "unstarted",
                "name": "Todo"
              },
              {
                "id": "started",
                "name": "In progress"
              },
              {
                "id": "completed",
                "name": "Done"
              },
              {
                "id": "canceled",
                "name": "Canceled"
              }
            ]
          }
        ]
      }
    ]
  }
}

Client extensions

Data this package carries for particular clients. The directory lists the clients named and never reads what is addressed to them.

  • so.opencompany.capabilities
  • so.opencompany.events