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

linear-lite-mcp

v0.1.5

Published

Lightweight MCP wrapper for Linear API - consolidates 23+ tools into 1

Readme

linear-lite-mcp

Lightweight MCP (Model Context Protocol) wrapper for the Linear API. Consolidates 28 Linear tools into a single action-based tool, reducing Claude Code context usage by ~12k tokens.

Installation

npm install linear-lite-mcp

Or run directly with npx:

npx linear-lite-mcp

Configuration

Set your Linear API key as an environment variable:

export LINEAR_API_KEY="lin_api_xxxxx"

Get your API key from Linear Settings > API.

Usage with Claude Code

Add to your Claude Code MCP configuration:

{
  "mcpServers": {
    "linear": {
      "command": "npx",
      "args": ["linear-lite-mcp"],
      "env": {
        "LINEAR_API_KEY": "your-api-key"
      }
    }
  }
}

Available Actions

The tool exposes a single linear tool with an action parameter. Available actions:

Issues

| Action | Description | |--------|-------------| | create_issue | Create a new issue | | update_issue | Update an existing issue | | get_issue | Get issue details | | search_issues | Search issues by text | | get_user_issues | Get issues assigned to a user | | get_team_issues | Get issues for a team | | get_project_issues | Get issues for a project |

Comments

| Action | Description | |--------|-------------| | add_comment | Add a comment to an issue | | get_comments | Get comments for an issue |

Teams

| Action | Description | |--------|-------------| | get_teams | List all teams | | get_team | Get team details |

Projects

| Action | Description | |--------|-------------| | get_projects | List all projects | | get_project | Get project details |

Labels

| Action | Description | |--------|-------------| | get_labels | List labels | | create_label | Create a new label | | update_label | Update a label |

Users

| Action | Description | |--------|-------------| | get_viewer | Get current authenticated user | | get_users | List all users | | get_user_teams | Get teams for a user | | get_user_projects | Get projects for a user |

Issue Relations

| Action | Description | |--------|-------------| | link_issues | Create a relationship between issues | | get_issue_relations | Get issue relationships |

Attachments

| Action | Description | |--------|-------------| | add_attachment | Add an attachment to an issue | | get_attachments | Get attachments for an issue |

Workflow

| Action | Description | |--------|-------------| | get_workflow_states | Get workflow states for a team |

Milestones

| Action | Description | |--------|-------------| | get_milestones | Get milestones for a project | | create_milestone | Create a new milestone | | update_milestone | Update a milestone |

Example Usage

// Create an issue
{
  "action": "create_issue",
  "payload": {
    "title": "Fix login bug",
    "teamId": "TEAM-ID",
    "description": "Users cannot login with SSO",
    "priority": 1
  }
}

// Search issues
{
  "action": "search_issues",
  "payload": {
    "query": "login bug",
    "limit": 10
  }
}

// Get teams
{
  "action": "get_teams",
  "payload": {}
}

Priority Levels

| Value | Level | |-------|-------| | 0 | No priority | | 1 | Urgent | | 2 | High | | 3 | Medium | | 4 | Low |

Relation Types

For link_issues action:

  • blocks / blocked_by
  • related
  • duplicate / duplicates / is_duplicated_by

License

MIT