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

hypothesis-canvas-mcp

v1.0.7

Published

MCP server for Hypothesis Canvas - Interactive canvas creation and editing through LLM interfaces

Readme

hypothesis-canvas-mcp

MCP (Model Context Protocol) server for Hypothesis Canvas - Interactive canvas creation and editing through LLM interfaces. This server allows AI assistants to create and retrieve shareable snapshots of various canvas types through the Hypothesis Canvas web application.

Features

  • Create shareable canvas snapshots with custom URLs
  • Support for all canvas types (Business Model, Opportunity, Hypothesis)
  • Optional password protection and expiration settings
  • Retrieve shared canvas content via share ID
  • No authentication required - works with public API

Installation

Use directly with npx (Recommended)

npx hypothesis-canvas-mcp

Or install globally

npm install -g hypothesis-canvas-mcp

Setup for Claude Desktop

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "hypothesis-canvas": {
      "command": "npx",
      "args": ["hypothesis-canvas-mcp"],
      "env": {
        "CANVAS_API_URL": "https://hypothesis-canvas-llm-webapp.vercel.app"
      }
    }
  }
}

Usage Examples

Create a Canvas Snapshot

Create a hypothesis canvas snapshot with the following:
- Title: "AI Code Review Assistant"
- Description: "Automated code review using LLMs"
- Cells:
  - value-proposition: "Reduce code review time by 80%"
  - customer-segments: "Development teams at tech companies"
  - key-metrics: "Review time, Bug detection rate"
  - channels: "VS Code marketplace, GitHub integration"
  - revenue-streams: "Subscription model"

The server will return a shareable URL like: https://hypothesis-canvas-llm-webapp.vercel.app/share/abc123def

Create a Password-Protected Snapshot

Create a business model canvas with password protection:
- Title: "Confidential Business Plan"
- Canvas Type: business
- Password: "secure123"
- Expires in: 24 hours
- Max views: 10
- Cells: [your canvas content...]

Retrieve a Canvas Snapshot

Get the canvas snapshot with share ID: abc123def

If password protected:

Get the canvas snapshot with share ID: abc123def and password: secure123

Available Tools

create_canvas_snapshot

Creates a shareable snapshot of a canvas.

Parameters:

  • canvasType (required): 'business', 'opportunity', or 'hypothesis'
  • title (required): Title for the snapshot
  • description (optional): Additional description
  • cells (required): Array of cell objects with:
    • id: Cell identifier (e.g., "value-proposition", "customer-segments")
    • content: Cell content text
  • shareSettings (optional):
    • isPublic: Make snapshot publicly accessible (default: true)
    • password: Password protect the snapshot
    • expiresIn: Expiration time in hours
    • maxViews: Maximum number of views allowed

get_canvas_snapshot

Retrieves a canvas snapshot by share ID.

Parameters:

  • shareId (required): The unique share ID
  • password (optional): Password if the snapshot is protected

Cell IDs by Canvas Type

Hypothesis Canvas

  • purpose
  • vision
  • means
  • advantage
  • metrics
  • valueProposition
  • obviousProblem
  • latentProblem
  • alternatives
  • situation
  • channel
  • trend
  • revenueModel
  • marketSize

Business Model Canvas

  • value-propositions
  • customer-segments
  • channels
  • customer-relationships
  • revenue-streams
  • key-resources
  • key-activities
  • key-partnerships
  • cost-structure

Opportunity Canvas

  • problems
  • solution-ideas
  • users-customers
  • user-outcomes
  • user-benefits
  • adoption-strategy
  • business-benefits
  • business-metrics
  • budget-resources

Development

# Run in development mode
pnpm dev

# Build for production
pnpm build

# Run tests
pnpm test

Environment Variables

  • CANVAS_API_URL: The URL of the canvas webapp API (defaults to https://hypothesis-canvas-llm-webapp.vercel.app)