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

@mcpbox/taskagent

v2.0.8

Published

TaskAgent Cloud plugin — RFC 8628 device-code pairing and /v1 API client

Readme

@mcpbox/taskagent@2 (Cloud + self-host)

MCPBox auth CLI for TaskAgent — RFC 8628 device-code pairing for TaskAgent Cloud and bootstrap-token login for OSS self-host. Part of the @mcpbox scope on mcpbox.ru. Canonical contract: docs/plugin-auth-v1.md.

npm: @mcpbox/taskagent

CLI binaries: mcpbox-taskagent (primary), taskagent (alias).

Cloud (default)

# Pair with TaskAgent Cloud
npx @mcpbox/taskagent login

# WSL / headless: skip auto-open (paste the printed URL into your Windows browser)
npx @mcpbox/taskagent login --no-open

# Verify /v1/cloud/session (401 → clear credentials + device re-pair)
npx @mcpbox/taskagent session

Local dev can override the hosted API:

TASKAGENT_CLOUD_URL=http://127.0.0.1:8081 npx @mcpbox/taskagent login

Agent setup

Generate per-agent install instructions for hosted MCP and optional plugins: For Codex, this installs the canonical plugin from tupical/taskagent/clients/codex-plugin into ~/plugins/taskagent, registers it in the personal marketplace (~/.agents/plugins/marketplace.json), and enables taskagent@personal in ~/.codex/config.toml, so it appears as installed in /plugins. During local development, set TASKAGENT_CODEX_PLUGIN_SOURCE to override the canonical source path.

npx @mcpbox/taskagent setup --all
npx @mcpbox/taskagent setup codex
npx @mcpbox/taskagent setup cursor --workspace taskagent-cloud

Codex uses the installed plugin's remote MCP + OAuth. Cursor and Claude setup delegate to the canonical taskagent-cursor and taskagent-claude packages from tupical/taskagent/clients.

Self-host (OSS :8080)

# After taskagent-server wrote bootstrap.token (~/.agents/taskagent/data/)
TASKAGENT_SELFHOST_URL=http://127.0.0.1:8080 npx @mcpbox/taskagent login --mode self-host

npx @mcpbox/taskagent session --mode self-host

Mode switch

npx @mcpbox/taskagent use cloud
npx @mcpbox/taskagent use self-host

Credentials: ~/.agents/taskagent/credentials.json (schema v1, mode: cloud | self-host). Override directory via TASKAGENT_AGENT_DIR. If ~/.config/taskagent/credentials.json exists, it is copied into the agent dir on first use.

On 401 / revoked token, cloud mode clears stored auth and prompts device-code re-pair (--no-repair disables auto re-pair on session).