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

@unthinkmedia/coherence-prototyper-mcp

v1.4.0

Published

MCP server + MCP Apps for Azure portal prototyping with Coherence UI

Downloads

613

Readme

Coherence Prototyper MCP Server

An MCP server with interactive MCP Apps that gives Claude Azure portal prototyping capabilities — accessible from Claude Desktop, Claude.ai, VS Code, or any MCP-compatible host.

Note: Text-based design guidance (component docs, UX guides, scaffolds, patterns, mock data references) is provided by the VS Code skills when working in-editor. This MCP server focuses on visual interactive apps and remote reference access for environments without a local repo clone.

Tools (13 total)

MCP Apps (interactive visual UI)

| Tool | Description | |---|---| | design_intent | Interactive form to capture What / Why / Success Criteria / Non-Goals before prototyping | | browse_design_tokens | Visual token browser with color swatches, search, and category filtering | | browse_icons | Searchable grid of ~1500 Azure portal + Fluent UI icons — click to select | | browse_verification_reports | Success-criteria scorecard viewer with trend deltas across verification runs |

Remote Reference Tools

| Tool | Description | |---|---| | list_experiments | List all experiments with title, description, tags, and date | | get_experiment | Fetch full source files (index.tsx, data.ts, styles.ts, intent.json) of an experiment from GitHub | | get_pattern | Fetch shared pattern source code (PageHeader, CopilotSuggestions, etc.) from GitHub | | init_workspace | Bootstrap a standalone workspace with package.json, Vite config, and shared patterns |

Setup

Claude Desktop

Add to your claude_desktop_config.json (Settings → Developer → Edit Config):

{
  "mcpServers": {
    "coherence-prototyper": {
      "command": "node",
      "args": ["/absolute/path/to/vibe-azure/mcp-server/dist/main.js"]
    }
  }
}

Replace /absolute/path/to/vibe-azure with the actual path to your clone.

VS Code (MCP)

Add to .vscode/mcp.json:

{
  "servers": {
    "coherence-prototyper": {
      "command": "node",
      "args": ["${workspaceFolder}/mcp-server/dist/main.js"]
    }
  }
}

Development

cd mcp-server

# Install dependencies
npm install

# Type-check
npx tsc --noEmit

# Build everything (server + MCP App UI)
npm run build

# Dev mode with watch (server + UI rebuild on change)
npm start

Architecture

mcp-server/
├── main.ts                    # stdio entry point + `init` CLI command
├── server.ts                  # MCP server: 13 tools (4 Apps + 5 app helpers + 4 reference)
├── init.ts                    # Workspace bootstrapper (fetches patterns from GitHub)
├── icon-browser.html          # MCP App view (Vite entry)
├── token-browser.html         # MCP App view (Vite entry)
├── intent-app.html            # MCP App view (Vite entry)
├── verification-report.html   # MCP App view (Vite entry)
├── src/
│   ├── content.ts             # Reads reference files from .github/skills/
│   ├── icon-browser.ts        # Client-side App for icon browser UI
│   ├── icon-data.ts           # Curated Azure icon catalog
│   ├── intent-app.ts          # Client-side App for intent capture UI
│   ├── intent-store.ts        # Reads/writes intent.json files
│   ├── manifest-cache.ts      # Fetches + caches Coherence manifest from CDN
│   ├── svg-cache.ts           # Fetches + caches SVG icons
│   ├── theme-cache.ts         # Fetches + caches theme CSS, parses tokens
│   ├── token-browser.ts       # Client-side App for token browser UI
│   ├── verification-report.ts # Client-side App for scorecard UI
│   └── verification-scorecard-store.ts # Reads verification snapshots/history

Data Flow

  • Live from CDN (cached 1hr): Component manifest JSON + theme CSS
  • From GitHub API (on demand): Experiment source files, shared patterns, experiment registry
  • From local disk: Intent documents, verification reports (via EXPERIMENTS_DIR env var)

Example Prompts

Once connected, try these in Claude:

  • "Browse design tokens" — opens the interactive token browser
  • "Find an icon for networking" — opens the visual icon picker
  • "Open the verification report for network-security-dashboard" — opens the scorecard viewer
  • "Show me the PageHeader pattern" — fetches shared pattern source from GitHub
  • "List all experiments" — shows available prototypes with metadata
  • "Get the source for the cost-management experiment" — fetches full experiment files
  • "Initialize a new workspace" — bootstraps a standalone project with Vite + shared patterns