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

@stripsior/elean

v1.1.0

Published

MCP server for the Elean task management API

Readme

elean MCP

Model Context Protocol server for the Elean task management API.

Connect AI assistants (Claude, Cursor, etc.) directly to your Elean workspace. Create, search, update, and manage tasks through natural language.


Requirements

  • Node.js 18 or later
  • An Elean API key (created in Workspace Settings → API Keys)

Usage

Run directly with npx — no installation required:

npx @stripsior/elean --key el_yourkey --project your-project-slug

| Flag | Alias | Description | |---|---|---| | --key | -k | Your Elean API key (starts with el_) | | --project | -p | Project slug from the project URL | | --help | -h | Show usage |


Claude Desktop setup

Add this to your Claude Desktop MCP configuration file:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "elean": {
      "command": "npx",
      "args": ["@stripsior/elean", "--key", "el_yourkey", "--project", "your-project-slug"]
    }
  }
}

Restart Claude Desktop after saving. You should see the Elean tools available in the tool picker.


Available tools

| Tool | Description | Required scope | |---|---|---| | list_statuses | List all custom task statuses in the project | task:read | | list_tasks | List tasks with pagination and filters | task:read | | get_task | Get full details of a single task by ID | task:read | | create_task | Create a new task | task:create | | update_task | Update one or more fields of an existing task | task:update | | delete_task | Permanently delete a task | task:update | | list_comments | List all comments on a task | task:read | | add_comment | Add a comment to a task | task:update | | get_attachment_url | Get a download URL for a file attachment | task:read | | upload_attachment | Upload a file to a task (max 10 MB, base64) | task:create |

Make sure your API key has the scopes required for the operations you want to use.


API keys

API keys are managed in Workspace Settings → API Keys. Each key has:

  • Scopestask:read, task:create, task:update
  • Project scope — all projects or a specific one
  • Expiry — optional expiration date

Keys are shown once at creation time. Store yours securely.


Development

# Install dependencies
npm install

# Build
npm run build

# Type-check without building
npm run typecheck

# Run from source (no build step)
npm run dev -- --key el_yourkey --project your-slug

Project structure

src/
├── index.ts        # CLI entry point and MCP server bootstrap
├── client.ts       # Typed Elean HTTP client
├── types.ts        # Zod schemas and inferred TypeScript types
└── tools/
    ├── index.ts        # Tool registration aggregator
    ├── statuses.ts     # list_statuses
    ├── tasks.ts        # list_tasks, get_task, create_task, update_task, delete_task
    ├── comments.ts     # list_comments, add_comment
    └── attachments.ts  # get_attachment_url, upload_attachment

Inspect tools locally

Use the MCP inspector to browse tools and call them interactively:

npx @modelcontextprotocol/inspector dist/index.js -- --key el_yourkey --project your-slug

License

MIT