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

@flyingrobots/bijou-mcp

v5.0.0

Published

MCP server exposing Bijou terminal components as rendering tools.

Readme

@flyingrobots/bijou-mcp

MCP (Model Context Protocol) server that exposes Bijou terminal components as rendering tools over stdio.

Any MCP client — Claude Code, Cursor, or a custom integration — can call these tools to get Unicode box-drawing output that renders cleanly in monospace chat contexts. No ANSI escape codes, no terminal required.

Install

npm install @flyingrobots/bijou @flyingrobots/bijou-mcp

Configure

Add to your MCP client config (e.g. .mcp.json for Claude Code):

{
  "mcpServers": {
    "bijou": {
      "command": "node",
      "args": ["node_modules/@flyingrobots/bijou-mcp/bin/bijou-mcp.js"]
    }
  }
}

Or point directly at a local checkout:

{
  "mcpServers": {
    "bijou": {
      "command": "node",
      "args": ["/path/to/bijou/packages/bijou-mcp/bin/bijou-mcp.js"]
    }
  }
}

Tools

Data and Structure

| Tool | What it renders | | --- | --- | | bijou_table | Box-drawn table with auto-sized columns | | bijou_tree | Hierarchy with Unicode connectors | | bijou_dag | Directed acyclic graph with boxed nodes and edge lines | | bijou_enumerated_list | Bulleted, numbered, roman, or lettered lists |

Containers and Layout

| Tool | What it renders | | --- | --- | | bijou_box | Bordered box with optional title | | bijou_header_box | Labeled box with optional detail line | | bijou_separator | Horizontal rule with optional centered label | | bijou_constrain | Text truncated to a max width/height |

Feedback and Status

| Tool | What it renders | | --- | --- | | bijou_alert | Alert box with icon (success, error, warning, info) | | bijou_progress_bar | Static progress bar with percentage | | bijou_stepper | Horizontal step indicator with checkmarks and dots | | bijou_timeline | Vertical timeline with status dots | | bijou_log | Styled log line with level prefix | | bijou_badge | Inline pill label |

Navigation

| Tool | What it renders | | --- | --- | | bijou_tabs | Horizontal tab bar with active indicator | | bijou_breadcrumb | Breadcrumb trail with separators | | bijou_paginator | Page indicator (dots or text) |

Rich Panels

| Tool | What it renders | | --- | --- | | bijou_explainability | AI decision card with rationale, evidence, confidence | | bijou_inspector | Detail panel with sections and current value | | bijou_accordion | Collapsible sections with expand/collapse indicators |

Utility

| Tool | What it renders | | --- | --- | | bijou_kbd | Keyboard key indicator | | bijou_hyperlink | Terminal hyperlink (OSC 8) | | bijou_skeleton | Placeholder loading block | | bijou_docs | Machine-readable docs for the MCP surface plus the full first-party component-family field guide |

Example Output

bijou_table

┌────────────┬─────────┬─────────┐
│ Name       │ Status  │ Version │
├────────────┼─────────┼─────────┤
│ bijou      │ healthy │ 5.0.0   │
│ bijou-node │ healthy │ 5.0.0   │
│ bijou-mcp  │ new     │ 5.0.0   │
└────────────┴─────────┴─────────┘

bijou_tree

├─ src
│  ├─ server.ts
│  ├─ context.ts
│  └─ tools/
└─ package.json

bijou_dag

╭──────────────╮
│ Parse        │
╰──────────────╯
        │
        ├──────────────────╮
        ▼                  ▼
╭──────────────╮  ╭──────────────╮
│ Validate     │  │ Tokenize     │
╰──────────────╯  ╰──────────────╯
        │                  │
        ├──────────────────┘
        ▼
╭──────────────╮
│ Compile      │
╰──────────────╯

bijou_stepper

✓ Plan ── ✓ Build ── ● Test ── ○ Ship

bijou_alert

┌──────────────────────┐
│ ✓ All tests passed.  │
└──────────────────────┘

How It Works

The server creates a Bijou context using createTestContext with mode: 'interactive' and plainStyle(). This gives full Unicode box-drawing layout without ANSI escape codes — structured text that renders correctly in any monospace context.

Each tool accepts structured JSON input, renders via the corresponding Bijou component, and returns the result as a plain text string.

All tools also accept an optional output field:

  • text (default): return the rendered plain-text output in content
  • data: return only MCP structuredContent with machine-readable semantic payload
  • both: return both the rendered text and the structured payload

License

Apache-2.0