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

huly-mcp

v1.5.0

Published

MCP server for Huly integration with Claude Code

Readme

Huly MCP Server

MCP (Model Context Protocol) server for Huly integration with Claude Code.

Installation

Install globally from npm:

npm install -g huly-mcp

Setup

Run the setup wizard to configure your credentials:

huly-mcp-setup

Enter the following when prompted:

Huly URL: http://139.185.54.63
Your Huly email: your-email
Your Huly password: your-password
Workspace name: sentiment-ai

That's it! The setup automatically configures ~/.claude.json for you.

Updating

To update to the latest version:

npm update -g huly-mcp

After updating, restart Claude Code for changes to take effect.

Usage

After setup:

  1. Restart Claude Code
  2. Run /mcp and enable the Huly server
  3. Use the following tools:

Available Tools

Projects:

  • mcp__huly__create_project - Create new projects with identifier, title, description, privacy settings
  • mcp__huly__list_projects - List all projects
  • mcp__huly__list_my_projects - List projects where you're a member
  • mcp__huly__delete_project - Delete a project

Issues:

  • mcp__huly__create_issue - Create issues with title, description (Markdown), priority (urgent/high/medium/low), project, assignee, and component
  • mcp__huly__list_issues - List issues with human-readable status, optionally filter by project
  • mcp__huly__update_issue - Update issue title, description, priority, status (Done/In Progress/Todo/Backlog/Canceled), assignee, and component
  • mcp__huly__delete_issue - Delete an issue

Components:

  • mcp__huly__create_component - Create project components (Frontend/Backend/Database etc) with descriptions
  • mcp__huly__list_components - List all components in a project
  • mcp__huly__update_component - Update component label and description
  • mcp__huly__delete_component - Delete a component

Milestones:

  • mcp__huly__create_milestone - Create milestones with label, target date, status, description
  • mcp__huly__list_milestones - List all milestones in a project
  • mcp__huly__update_milestone - Update milestone label, description, status, and target date
  • mcp__huly__delete_milestone - Delete a milestone

Manual Configuration

If you prefer to manually edit ~/.claude.json:

{
  "mcpServers": {
    "huly": {
      "command": "huly-mcp",
      "env": {
        "HULY_URL": "http://your-huly-instance.com",
        "HULY_EMAIL": "[email protected]",
        "HULY_PASSWORD": "your-password",
        "HULY_WORKSPACE": "your-workspace"
      }
    }
  }
}

Development

git clone https://github.com/SentimentAILtd/huly-mcp.git
cd huly-mcp
npm install
npm run build

License

MIT