npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@tomperi/linear-mcp-server

v0.1.4

Published

A Model Context Protocol server for the Linear API.

Readme

Linear MCP Server

npm version

A Model Context Protocol server for the Linear API.

This server provides integration with Linear's issue tracking system through MCP, allowing LLMs to interact with Linear issues.

Note: This package is published as a scoped package @tomperi/linear-mcp-server. It's currently in beta (v0.1.4).

Installation

  1. Install the package:
npm install @tomperi/linear-mcp-server
# or
yarn add @tomperi/linear-mcp-server
# or
pnpm add @tomperi/linear-mcp-server
  1. Create or get a Linear API key for your team: https://linear.app/YOUR-TEAM/settings/api

  2. Add server config to Claude Desktop:

    • MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "linear": {
      "command": "npx",
      "args": ["-y", "@tomperi/linear-mcp-server"],
      "env": {
        "LINEAR_API_KEY": "your_linear_api_key_here"
      }
    }
  }
}

Components

Tools

The Linear MCP Server provides tools for managing issues, projects, milestones, and more.

A detailed documentation of all tools, their parameters, examples, and best practices can be found in our Tools Documentation.

Here's a quick overview of the available tools:

Issue Management

  • linear_create_issue: Create new Linear issues
  • linear_update_issue: Update existing issues
  • linear_search_issues: Search issues with flexible filtering
  • linear_get_user_issues: Get issues assigned to a user
  • linear_add_comment: Add comments to issues

Project Management

  • linear_list_projects: List available projects
  • linear_get_project: Get detailed project information
  • linear_create_milestone: Create new project milestones
  • linear_create_document: Create new project documents
  • Create issues within projects by using linear_create_issue with a projectId and optional milestoneId

Organization

  • linear_get_labels: Get available issue labels
  • linear_get_viewer: Get information about the authenticated user
  • linear_list_teams: List teams in the organization with their details

Resources

  • linear-issue:///{issueId} - View individual issue details
  • linear-team:///{teamId}/issues - View team issues
  • linear-user:///{userId}/assigned - View user's assigned issues
  • linear-organization: - View organization info
  • linear-viewer: - View current user context

Usage examples

Some example prompts you can use with Claude Desktop to interact with Linear:

  1. "Show me all my high-priority issues" → execute the search_issues tool and/or linear-user:///{userId}/assigned to find issues assigned to you with priority 1

  2. "Based on what I've told you about this bug already, make a bug report for the authentication system" → use create_issue to create a new high-priority issue with appropriate details and status tracking

  3. "Find all in progress frontend tasks" → use search_issues to locate frontend-related issues with in progress task

  4. "Give me a summary of recent updates on the issues for mobile app development" → use search_issues to identify the relevant issue(s), then linear-issue:///{issueId} fetch the issue details and show recent activity and comments

  5. "What's the current workload for the mobile team?" → combine linear-team:///{teamId}/issues and search_issues to analyze issue distribution and priorities across the mobile team

  6. "Create a new task in the API Redesign project for the Q2 milestone" → use linear_list_projects to find the project, linear_get_project to find milestone details, and linear_create_issue with projectId and milestoneId to create the issue

Development

  1. Clone the repository:
git clone https://github.com/tomperi/linear-mcp-server.git
cd linear-mcp-server
  1. Install dependencies:
npm install
# or
yarn
# or
pnpm install
  1. Configure Linear API key in .env:
LINEAR_API_KEY=your_api_key_here
  1. Build the server:
npm run build
# or
yarn build
# or
pnpm run build

For development with auto-rebuild:

npm run watch
# or
yarn watch
# or
pnpm run watch

Publishing

To publish a new version to npm:

  1. Update the version in package.json
  2. Build the package:
    pnpm run build
  3. Publish the package:
    pnpm run release

License

This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.