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

skilled-plus4u-mcp

v0.6.0

Published

MCP server with secure Plus4U authentication and dynamic skill execution

Readme

skilled-plus4u-mcp

MCP server with secure Plus4U authentication and on-demand skill execution.

Features

  • Secure token storage: Tokens stored in OS keychain (macOS Keychain, Windows Credential Manager, Linux Secret Service)
  • Agent-driven skill discovery: The agent (Claude Code, Cursor, Codex, …) discovers SKILL.md and skill.js itself;
  • Token injection: Skills receive an authenticated HTTP client without ever seeing the token
  • OIDC authentication: Interactive browser-based login with Plus4U

Installation

npm install
npm run build

Configuration

Add to your MCP configuration (e.g., mcp.json):

{
  "mcpServers": {
    "skilled-plus4u-mcp": {
      "command": "node",
      "args": ["/path/to/skilled-plus4u-mcp/build/index.js"],
      "env": {
        "LOG_LEVEL": "info"
      }
    }
  }
}

Environment Variables

| Variable | Default | Description | |----------|---------|-------------| | LOG_LEVEL | info | Logging level: error, warn, info, debug |

MCP Tools

login

Authenticate with Plus4U. Opens browser for OIDC login and stores token in OS keychain.

logout

Clear authentication token from keychain.

getAuthStatus

Check if authenticated with Plus4U without triggering login. Returns authenticated: true/false.

executeSkill

Execute a skill script identified by absolute path.

{
  "scriptPath": "/Users/me/.claude/skills/bookkit-read/skill.js",
  "params": {
    "url": "https://uuapp.plus4u.net/uu-bookkit-maing01/AWID/book/page?code=home"
  }
}

The agent is responsible for resolving scriptPath from its own SKILL.md discovery (Claude Code skills, Cursor rules, Codex skills, …). Convention: skill.js co-located with SKILL.md in the same directory.

batchExecuteSkill

Execute a skill script multiple times in parallel.

{
  "scriptPath": "/Users/me/.claude/skills/bookkit-read/skill.js",
  "paramsList": [
    { "url": "…/page1" },
    { "url": "…/page2" }
  ]
}

Writing Skills

Skills are JavaScript modules exporting execute:

async function execute(params, http) {
    const result = await http.get('https://api.example.com/data');
    return result;
}

module.exports = { execute };

The server caches loaded modules per absolute path and invalidates the cache when the script's mtime changes — no reloadSkills tool needed.

SKILL.md ↔ skill.js linking

The agent learns about a skill through its own SKILL.md. To run that skill, the agent passes the absolute path to the executable script (typically skill.js co-located with SKILL.md) to executeSkill. This server has no opinion about how the agent finds those files.

Security

  • Skills never see the token — they only receive the http object
  • http.get() / http.post() auto-add the Bearer token
  • Token is stored in OS keychain, not in env vars or files

License

MIT