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

ai-agent-linear-mcp-server

v1.0.0

Published

MCP server for Linear.app integration

Readme

Linear MCP Server

MCP server for Linear.app integration, providing comprehensive access to Linear's GraphQL API through the Model Context Protocol.

Features

  • Issue Management: Create, read, update, and delete issues
  • Project Management: Manage projects and project relationships
  • Team Operations: Access team information and team-specific issues
  • User Management: List users and get user details
  • Comments: Add, edit, and delete comments on issues
  • Workflow States: Move issues between workflow states
  • Labels: Manage issue labels
  • Cycles/Sprints: Work with cycles and sprint planning

Setup

  1. Get your Linear API key:

    • Go to Linear Settings → API → Personal API keys
    • Create a new key with appropriate permissions
    • Copy the generated key
  2. Set the environment variable:

    export LINEAR_API_KEY=lin_api_xxxxxxxxxxxxxx
  3. Configure in your agent:

    mcpServers:
      - name: linear
        url: node ./mcp-servers/linear/dist/server.js
        env:
          LINEAR_API_KEY: ${LINEAR_API_KEY}

Available Tools

Issue Management

  • linear_list_issues - List issues with filters
  • linear_get_issue - Get specific issue details
  • linear_create_issue - Create new issue
  • linear_update_issue - Update issue fields
  • linear_delete_issue - Archive/delete issue
  • linear_search_issues - Search issues by query

Project Management

  • linear_list_projects - List projects
  • linear_get_project - Get project details
  • linear_create_project - Create new project
  • linear_update_project - Update project
  • linear_add_issue_to_project - Link issue to project

Team Operations

  • linear_list_teams - List all teams
  • linear_get_team - Get team details
  • linear_list_team_issues - Get team issues

User Operations

  • linear_list_users - List workspace users
  • linear_get_current_user - Get authenticated user
  • linear_get_user - Get user details

Comments

  • linear_add_comment - Add comment to issue
  • linear_list_comments - List issue comments
  • linear_update_comment - Edit comment
  • linear_delete_comment - Delete comment

Workflow & Labels

  • linear_list_workflow_states - List states
  • linear_move_issue - Change issue state
  • linear_list_labels - List labels
  • linear_add_label - Add label to issue

Cycles/Sprints

  • linear_list_cycles - List cycles
  • linear_get_current_cycle - Get active cycle
  • linear_add_issue_to_cycle - Add to sprint

Rate Limits

Linear API has the following rate limits:

  • API key authentication: 1,500 requests per hour per user
  • OAuth app authentication: 500 requests per hour per user/app

Development

# Install dependencies
npm install

# Build
npm run build

# Test
echo '{"method": "tools/list"}' | node dist/server.js