drio
Open app

Linear MCP Server

Source

A Linear MCP Server for interacting with Linear

Catalog onlyCatalog onlySTDIO

Overview

Linear MCP Server is a Model Context Protocol (MCP) server designed for interacting with Linear, enabling AI assistants to fetch data from Linear through the MCP standard.

To use the Linear MCP Server, clone the repository, install dependencies, set up your environment with a Linear API key, and run the development server or build for production.

  • Fetch user todo tickets by user ID or email address. - Implements the MCP protocol for compatibility with various MCP clients.
  1. Integrating Linear ticket management into AI assistants.
  2. Automating task retrieval for users in Linear.
  3. Enhancing productivity tools with Linear data access.

Add to your AI client

Use these steps to connect Linear MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "linear-mcp-server-argia-andreas": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-linear-mcp-server-argia-andreas"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "linear-mcp-server-argia-andreas": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-linear-mcp-server-argia-andreas"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "linear-mcp-server-argia-andreas": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-linear-mcp-server-argia-andreas"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "linear-mcp-server-argia-andreas": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-linear-mcp-server-argia-andreas"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "linear-mcp-server-argia-andreas": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-linear-mcp-server-argia-andreas"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "linear-mcp-server-argia-andreas": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-linear-mcp-server-argia-andreas"
      ]
    }
  }
}

FAQ

How do I get my Linear API key?

You can obtain your Linear API key from the [Linear Developer Console](https://linear.app/settings/api).

Can I use this server with any MCP client?

Yes! The server is designed to work with any MCP client that adheres to the MCP standard.

What programming language is this server built with?

The Linear MCP Server is built using TypeScript.