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

hoshin-kanri-mcp

v2.0.1

Published

Hoshin Kanri X-Matrix MCP server — sovereign local JSON mode (data never leaves your machine) or remote API mode. 11 tools, 9 guided prompts: strategy deployment, review cadences, completeness score, weekly execution sync.

Readme

hoshin-kanri-mcp

MCP server for Hoshin Kanri — the AI harness for strategic steering. A living X-Matrix (3-5 year objectives, annual objectives, initiatives, KPIs, correlations), review cadences, a completeness score, and the prompts that let your AI agent run the discipline: weekly execution sync, boardroom artifacts, deployment diagnosis.

11 tools · 9 guided prompts · 2 modes: sovereign local or remote API.

Quick start — sovereign local mode (nothing leaves your machine)

Your matrix lives in JSON files on your computer. No account, no cloud, no telemetry — the strictest answer to "where does my strategy live?".

// claude_desktop_config.json
{
  "mcpServers": {
    "hoshin-kanri": {
      "command": "npx",
      "args": ["-y", "hoshin-kanri-mcp"],
      "env": { "HOSHIN_DATA_DIR": "/path/to/your/data" }
    }
  }
}

HOSHIN_DATA_DIR defaults to ~/hoshin-data/. Files are plain JSON — readable, diffable, versionable, yours.

Remote mode — the hoshin.app cloud API

Same tools against your organization on hoshin.app (EU-hosted, strict multi-tenant isolation, free tier):

{
  "mcpServers": {
    "hoshin-kanri": {
      "command": "npx",
      "args": ["-y", "-p", "hoshin-kanri-mcp", "hoshin-kanri-mcp-remote"],
      "env": { "AUTH_TOKEN": "hk_..." }
    }
  }
}

Or skip the package entirely: claude.ai, Claude Desktop and Cursor connect straight to https://hoshin.app/mcp with OAuth 2.1 — automatic discovery, no token to paste.

Tools

get_matrix_data (full matrix for views and artifacts) · get_matrix_summary · get_matrix_completeness (5-metric score) · list_objectives · update_element_status (accepts external_ref — link to the Linear/Jira project) · add_idea · search_ideas · get_management_architecture · diagnose_theme_deployment · suggest_meeting_for_topic · share_matrix (publish a revocable read-only public link — remote mode only, by design: in local mode your data has no cloud to leak to).

Prompts

weekly_sync (pull execution progress from Linear/Jira via their MCP, update statuses, prepare the weekly review agenda) · matrix_artifact (boardroom-ready interactive X-Matrix artifact) · strategic_review · deployment_diagnosis · indicator_balance · meeting_setup_guide · visual_matrix · export_data · idea_triage.

Development (this directory)

index-streamable-http.js is the production HTTP transport served at https://hoshin.app/mcp (port 3101 behind nginx) — it is not part of the npm package. Env: MCP_PORT, API_BASE_URL, OAUTH_ISSUER.

npm install
npm run start:local   # sovereign JSON mode
npm run start:stdio   # remote API mode (AUTH_TOKEN, API_BASE_URL)
npm start             # streamable HTTP (server-side)

Learn more

MIT — the code is a commodity; your strategy is not.