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

mcp-creator-typescript

v1.2.0

Published

Scaffold, build, and publish TypeScript MCP servers to npm. The TypeScript companion to mcp-creator-python.

Readme

mcp-creator-typescript

Scaffold, build, and publish TypeScript MCP servers to npm. The TypeScript companion to mcp-creator-python.

Installation

{
  "mcpServers": {
    "mcp-creator-typescript": {
      "command": "npx",
      "args": ["-y", "mcp-creator-typescript"]
    }
  }
}

Tools

| Tool | Description | |------|-------------| | get_creator_profile | Load persistent profile (setup state, npm username, project history) | | update_creator_profile | Save profile updates (npm/GitHub username, add project) | | check_setup | Verify Node.js ≥ 18, npm, git, gh CLI, npm auth | | check_npm_name | Check npm package name availability | | scaffold_server | Generate complete TypeScript MCP server project from tool definitions | | add_tool | Add a new tool to an existing scaffolded project | | build_package | Run npm run build (tsup) | | publish_package | Run npm publish to npm | | setup_github | git init + gh repo create + push | | generate_launchguide | Generate LAUNCHGUIDE.md for MCP Marketplace submission |

How It Works

  1. check_setup — Verify your environment has all required tools
  2. check_npm_name — Find an available npm package name
  3. scaffold_server — Generate a complete project with tool stubs, tests, and config
  4. Implement — Replace the TODO stubs in src/tools/ with your real logic
  5. build_package — Build with tsup
  6. publish_package — Publish to npm
  7. setup_github — Create a GitHub repo
  8. generate_launchguide — Create LAUNCHGUIDE.md for marketplace submission

Generated Project Stack

  • @modelcontextprotocol/sdk + zod — MCP server + parameter validation
  • tsup — Fast TypeScript bundler (ESM, shebang, node18)
  • vitest — Test runner
  • Optional: @mcp_marketplace/license — License SDK for paid servers

Tool Definition Format

[
  {
    "name": "get_weather",
    "description": "Get current weather for a city",
    "parameters": [
      { "name": "city", "type": "string", "required": true, "description": "City name" },
      { "name": "units", "type": "string", "required": false, "description": "Temperature units (C or F)" }
    ],
    "returns": "JSON weather data"
  }
]