Linear 1 MCP Server

A Model Context Protocol server for the Linear API.

Local serverstdio

What is the Linear 1 MCP server?

Linear 1 mcp server connects Linear 1 to AI assistants that speak the Model Context Protocol. A Model Context Protocol server for the Linear API.

What Linear 1 does

A Model Context Protocol server for the Linear API.

Tools it exposes

Once connected, the assistant can call these 2 tools directly:

  • Tools — 1. linear_create_issue: Create a new Linear issues - Required inputs: - title (string): Issue title - teamId (string): Team ID to create issue in -
  • Resources — The Resources tool exposed by this server

Installing the linear 1 mcp server

The server is distributed via npm as @smithery/cli, so most clients can run it without a manual build step. Add it to your MCP client's configuration and restart the client to pick it up — the copy-paste configs for Claude Desktop, Claude Code and Cursor are on this page.

Configuration

Before the server will start you need to supply one environment variable: LINEAR_API_KEY. Keep credentials in your client's env block or a secrets manager rather than committing them.

Where it fits

Productivity servers pay off through capture: the tasks and notes that never get filed are the ones where opening the app is more friction than the thought is worth. Linear 1 sits in that group, and the shape of its toolset — Tools, Resources — tells you what it is really for. Worth comparing against the other productivity servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.

Practical notes

  • This server runs locally, so it operates with whatever access your machine and its credentials already have. Scope that deliberately rather than by default.
  • It will not start until its required credentials are present, so set those before wondering why the tools never appear.
  • Maintained by gerbal.
  • MCP clients ask for confirmation before each tool call by default. Keep that on while you learn what the linear 1 mcp server actually does with your data.
  • Every entry in this directory is reviewed by hand before it goes live, and details are checked against the project's own documentation.

Available tools

ToolWhat it does
Tools1. **linear_create_issue**: Create a new Linear issues - Required inputs: - title (string): Issue title - teamId (string): Team ID to create issue in - Optional inputs: - description (string): Issue description (markdown
ResourcesThe Resources tool exposed by this server.

How to install the Linear 1 MCP server

{
  "mcpServers": {
    "linear-mcp-server-1": {
      "command": "npx",
      "args": ["-y", "@smithery/cli"],
      "env": {
        "LINEAR_API_KEY": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
LINEAR_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Linear 1 to Tools.
  • Use Linear 1 to Resources.

Frequently asked questions

It connects Linear 1 to MCP-compatible AI assistants such as Claude and Cursor, exposing 2 tools (Tools, Resources) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Linear 1 directly.