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

@fioenix/huly-mcp

v1.10.4

Published

MCP server for Huly project management — manage tasks, projects, labels, documents, milestones, and comments over stdio or HTTP.

Readme

@fioenix/huly-mcp

MCP server for Huly project management. Exposes tasks, projects, labels, documents, milestones, and comments as MCP tools — usable from any MCP client (Claude, Google Antigravity, OpenAI Codex, and Claude Cowork).

The package is a single self-contained bundle: npx runs it with no install step.

Configuration

The server needs 3 environment variables and is single-workspace (one Huly workspace, shared by all callers):

| Variable | Description | |---|---| | HULY_HOST | Huly instance URL, e.g. https://huly.app | | HULY_WORKSPACE_ID | Workspace UUID (Huly Settings → Workspace) | | HULY_API_KEY | API token — a JWT binding one account to one workspace; see note below |

Transport is selected by HULY_MCP_TRANSPORTstdio (default) or http.

The token's payload carries account and workspace, so it acts as one specific person: everything created through it is attributed to that account and runs with that account's role, and me resolves to the token's owner rather than whoever is asking. It has no exp claim, so it stays valid until the server's signing secret changes — treat it like a password. Tokens are issued from the Huly workbench's workspace settings (Settings → General), which is admin-only, so an ordinary member cannot mint their own — on a team, expect to ask an admin for one.

Usage — stdio (local clients)

Add to your MCP client config:

{
  "mcpServers": {
    "huly": {
      "command": "npx",
      "args": ["-y", "@fioenix/huly-mcp@latest"],
      "env": {
        "HULY_MCP_TRANSPORT": "stdio",
        "HULY_HOST": "https://huly.app",
        "HULY_WORKSPACE_ID": "your-workspace-uuid",
        "HULY_API_KEY": "your-api-token"
      }
    }
  }
}

Usage — HTTP (remote / Claude Cowork)

HULY_MCP_TRANSPORT=http \
HULY_HOST=https://huly.app \
HULY_WORKSPACE_ID=your-workspace-uuid \
HULY_API_KEY=your-api-token \
HULY_MCP_AUTH_TOKEN=your-shared-secret \
npx -y @fioenix/huly-mcp@latest

Serves POST /mcp (default port 3000, override with PORT) and GET /health. When HULY_MCP_AUTH_TOKEN is set, callers must send Authorization: Bearer <token> — because the server holds Huly credentials, always set it for any non-local deployment.

Tools

huly_whoami, huly_list_projects, huly_list_task_kinds, huly_list_users, huly_list_tasks, huly_get_task, huly_get_task_by_id, huly_list_sub_issues, huly_create_task, huly_update_task, huly_delete_task, huly_get_activity, huly_get_comments, huly_get_comment, huly_report, huly_list_labels, huly_create_label, huly_assign_label, huly_show_labels, huly_list_teamspaces, huly_list_documents, huly_read_document, huly_create_document, huly_create_teamspace, huly_list_milestones, huly_create_milestone, huly_complete_milestone, huly_milestone_report.

huly_get_comments reads comments on any object (issue, milestone, document, …) by its internal _id, with thread replies nested in replies; huly_get_comment resolves a single comment by the message _id from a chunter link.

Every tool returns a JSON envelope: { "status": "ok", ... } or { "status": "error", "error": "..." }.

Arguments are validated strictly: an unrecognised argument is rejected with unrecognized_keys instead of being ignored, so a call failing that way means a wrong argument name. Note huly_create_task takes parentId (alias parent) to create a sub-issue.

License

MIT — source at github.com/fioenix/huly-skill.