Fire in da houseTop Tip:Paying $100+ per month for Perplexity, MidJourney, Runway, ChatGPT and other tools is crazy - get all your AI tools in one site starting at $15 per month with Galaxy AI Fire in da houseCheck it out free

linear-mcp-go

MCP.Pizza Chef: geropl

linear-mcp-go is a Go-written MCP server that integrates with the Linear API, enabling creation, updating, searching of issues, user issue retrieval, commenting, and team info access. It respects Linear's API rate limits and supports cross-platform deployment with pre-built binaries for Linux, macOS, and Windows. Designed for developers needing structured, real-time interaction with Linear through the MCP protocol.

Use This MCP server To

Create and update Linear issues via MCP protocol Search and retrieve issues assigned to specific users Add comments to Linear issues programmatically Fetch team information from Linear for context-aware workflows Manage Linear API requests with built-in rate limiting Integrate Linear issue tracking into AI-powered developer tools Automate issue creation and updates from chat or code editors Enable real-time issue querying and updates in MCP-enabled apps

README

Linear MCP Server

A Model Context Protocol (MCP) server for Linear, written in Go. This server provides tools for interacting with the Linear API through the MCP protocol.

Features

  • Create, update, and search Linear issues
  • Get issues assigned to a user
  • Add comments to issues
  • Retrieve team information
  • Rate-limited API requests to respect Linear's API limits

Prerequisites

  • Go 1.23 or higher
  • Linear API key

Installation

From Releases

Pre-built binaries are available for Linux, macOS, and Windows on the GitHub Releases page.

  1. Download the appropriate binary for your platform
  2. Make it executable (Linux/macOS):
chmod +x linear-mcp-go-*
  1. Run the binary as described in the Usage section

Automated

# Download linux binary for the latest release
RELEASE=$(curl -s https://api.github.com/repos/geropl/linear-mcp-go/releases/latest)
DOWNLOAD_URL=$(echo $RELEASE | jq -r '.assets[] | select(.name | contains("linux")) | .browser_download_url')
curl -L -o ./linear-mcp-go $DOWNLOAD_URL
chmod +x ./linear-mcp-go

# Setup the mcp server (.gitpod.yml, dotfiles repo, etc.)
./linear-mcp-go setup --tool=cline

Usage

Running the Server

  1. Set your Linear API key as an environment variable:
export LINEAR_API_KEY=your_linear_api_key
  1. Run the server:
# Run in read-only mode (default)
./linear-mcp-go serve

# Run with write access enabled
./linear-mcp-go serve --write-access

The server will start and listen for MCP requests on stdin/stdout.

Setting Up for AI Assistants

The setup command automates the installation and configuration process for various AI assistants:

# Set your Linear API key as an environment variable
export LINEAR_API_KEY=your_linear_api_key

# Set up for Cline (default)
./linear-mcp-go setup

# Set up with write access enabled
./linear-mcp-go setup --write-access

# Set up with auto-approval for read-only tools
./linear-mcp-go setup --auto-approve=allow-read-only

# Set up with specific tools auto-approved
./linear-mcp-go setup --auto-approve=linear_get_issue,linear_search_issues

# Set up with write access and auto-approval for read-only tools
./linear-mcp-go setup --write-access --auto-approve=allow-read-only

# Set up for a different tool (only "cline" supported for now)
./linear-mcp-go setup --tool=cline

This command:

  1. Checks if the Linear MCP binary is already installed
  2. Copies the current binary to the installation directory if needed
  3. Configures the AI assistant to use the Linear MCP server
  4. Sets up auto-approval for specified tools if requested

The --auto-approve flag can be used to specify which tools should be auto-approved in the Cline configuration:

  • --auto-approve=allow-read-only: Auto-approves all read-only tools (linear_search_issues, linear_get_user_issues, linear_get_issue, linear_get_teams)
  • --auto-approve=tool1,tool2,...: Auto-approves the specified comma-separated list of tools

Currently supported AI assistants:

  • Cline (VSCode extension)

By default, the server runs in read-only mode, which means the following tools are disabled:

  • linear_create_issue
  • linear_update_issue
  • linear_add_comment

To enable these tools, use the --write-access=true flag.

Available Tools

linear_create_issue

Creates a new Linear issue with specified details. Supports creating sub-issues and assigning labels.

Parameters:

  • title (required): Issue title
  • team (required): Team identifier (key, UUID or name)
  • description: Issue description
  • priority: Priority (0-4)
  • status: Issue status
  • parentIssue: Optional parent issue ID to create a sub-issue
  • labels: Optional comma-separated list of label IDs to assign

linear_update_issue

Updates an existing Linear issue's properties.

Parameters:

  • id (required): Issue ID
  • title: New title
  • description: New description
  • priority: New priority (0-4)
  • status: New status

linear_search_issues

Searches Linear issues using flexible criteria.

Parameters:

  • query: Optional text to search in title and description
  • teamId: Filter by team ID
  • status: Filter by status name (e.g., 'In Progress', 'Done')
  • assigneeId: Filter by assignee's user ID
  • labels: Filter by label names (comma-separated)
  • priority: Filter by priority (1=urgent, 2=high, 3=normal, 4=low)
  • estimate: Filter by estimate points
  • includeArchived: Include archived issues in results (default: false)
  • limit: Max results to return (default: 10)

linear_get_user_issues

Retrieves issues assigned to a specific user or the authenticated user.

Parameters:

  • userId: Optional user ID. If not provided, returns authenticated user's issues
  • includeArchived: Include archived issues in results
  • limit: Maximum number of issues to return (default: 50)

linear_get_issue

Retrieves a single Linear issue by its ID.

Parameters:

  • issueId (required): ID of the issue to retrieve

linear_add_comment

Adds a comment to an existing Linear issue.

Parameters:

  • issueId (required): ID of the issue to comment on
  • body (required): Comment text in markdown format
  • createAsUser: Optional custom username to show for the comment
  • displayIconUrl: Optional avatar URL for the comment

linear_get_teams

Retrieves Linear teams with an optional name filter.

Parameters:

  • name: Optional team name filter. Returns teams whose names contain this string.

Test

Tests are implemented using go-vcr, and executed against https://linear.app/linear-mcp-go-test.

Execute tests

Using the existing recordings (cassettes):

go test -v ./...
Re-recording test:

Requires LINEAR_API_KEY to be set.

go test -v -record=true ./...

This will update all tests that don't alter remote state.

go test -v -recordWrites=true ./...

This will re-run all tests, including some that might alter the outcome of other tests cases, which might require further manual work to adjust.

go test -v -golden=true ./...

Updates all .golden fields.

Release Process

The project uses GitHub Actions for automated testing and releases:

  1. All pushes to the main branch and pull requests are automatically tested
  2. When a tag matching the pattern v* (e.g., v1.0.0) is pushed, a new release is automatically created
  3. Binaries for Linux, macOS, and Windows are built and attached to the release

To create a new release:

  1. Update the version in pkg/server/server.go
  2. Commit the changes
  3. Create and push a tag matching the version:
git tag v1.0.0
git push origin v1.0.0

The GitHub Actions workflow will automatically create a release with the appropriate binaries.

License

MIT

linear-mcp-go FAQ

How do I install linear-mcp-go on my system?
Download the pre-built binary for your OS from the GitHub Releases page, make it executable if needed, and run it as described in the usage instructions.
What are the prerequisites for running linear-mcp-go?
You need Go 1.23 or higher and a valid Linear API key to authenticate requests.
How does linear-mcp-go handle Linear API rate limits?
It includes built-in rate limiting to ensure API requests comply with Linear's usage policies, preventing request throttling.
Can linear-mcp-go create and update issues in Linear?
Yes, it supports creating new issues, updating existing ones, and searching issues through the MCP protocol.
Is linear-mcp-go cross-platform?
Yes, pre-built binaries are available for Linux, macOS, and Windows platforms.
How does linear-mcp-go integrate with MCP clients?
It exposes Linear API functionality as MCP tools, allowing clients to interact with Linear issues and teams in real time.
What programming language is linear-mcp-go written in?
It is written in Go, leveraging its performance and concurrency features.
Does linear-mcp-go support adding comments to issues?
Yes, it provides functionality to add comments to Linear issues via MCP.
Can I retrieve team information using linear-mcp-go?
Yes, it allows fetching team details to provide context for issue management workflows.