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

@isnbh0/toybox-mcp-server

v1.0.4

Published

MCP server for TOYBOX - Zero-friction publishing platform for Claude artifacts

Readme

TOYBOX MCP Server

Zero-friction publishing platform for Claude artifacts via Model Context Protocol (MCP).

Overview

TOYBOX MCP Server enables Claude Desktop users to publish their artifacts to a personal GitHub Pages portfolio site through simple conversational commands. No technical knowledge required!

Features

  • 🚀 Zero-friction setup: Initialize your TOYBOX with one command
  • 📦 Instant publishing: Publish artifacts directly from Claude Desktop
  • 🎨 Professional presentation: Automated portfolio site with responsive design
  • 🔧 Customizable: Configure themes, layouts, and branding
  • 📱 Mobile-friendly: Works perfectly on all devices
  • 🔒 Secure: All code validation and safe deployment practices

Prerequisites

  1. GitHub Account: Create one at github.com
  2. GitHub CLI: Install from cli.github.com
  3. Authentication: Run gh auth login and follow the browser flow

Installation

No installation required! TOYBOX uses npx for zero-friction setup.

Configuration

Add to your Claude Desktop configuration file:

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

{
  "mcpServers": {
    "toybox": {
      "command": "npx",
      "args": ["@isnbh0/toybox-mcp-server@latest"]
    }
  }
}

For production use, pin to a specific version:

{
  "mcpServers": {
    "toybox": {
      "command": "npx",
      "args": ["@isnbh0/[email protected]"]
    }
  }
}

Usage

1. Initialize Your TOYBOX

In Claude Desktop:

"I want to create a TOYBOX for my projects"

Claude will:

  • Check your GitHub authentication
  • Create a repository from the TOYBOX template
  • Enable GitHub Pages
  • Set up local development environment

2. Publish Artifacts

Create any artifact in Claude Desktop, then:

"Publish this to my TOYBOX"

Claude will:

  • Generate a unique ID for your artifact
  • Commit and push to GitHub
  • Provide the live URL

3. Manage Your Collection

"Show me all my TOYBOX projects"
"Update my TOYBOX theme to dark mode"
"Change my TOYBOX title to 'My Creative Projects'"

Available Commands

| Command | Description | |---------|-------------| | initialize_toybox | Set up a new TOYBOX repository | | publish_artifact | Publish an artifact to your TOYBOX | | list_artifacts | Show all published artifacts | | update_config | Modify TOYBOX settings |

Configuration Options

  • Title: Display name for your portfolio
  • Description: Subtitle text
  • Theme: auto, light, or dark
  • Layout: grid or list view
  • Footer: Show/hide footer section

Repository Structure

When initialized, your TOYBOX repository contains:

toybox/
├── src/artifacts/          # Your published artifacts
├── TOYBOX_CONFIG.json      # Site configuration
└── (template files...)     # React app infrastructure

Troubleshooting

Authentication Issues

gh auth status              # Check authentication
gh auth login               # Re-authenticate if needed

Build Failures

  • Ensure your artifact code is valid React/TypeScript
  • Check for syntax errors or missing imports
  • Verify all dependencies are available

Repository Not Found

  • Make sure you've run initialize_toybox first
  • Check that the repository exists on GitHub
  • Verify GitHub Pages is enabled

Contributing

This project is part of the TOYBOX ecosystem. See the main repository for contribution guidelines.

License

MIT License - see LICENSE file for details.