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

surgext-mcp

v1.0.1

Published

MCP server for Surge XT documentation

Readme

Surge XT Docs MCP Server

A Model Context Protocol (MCP) server that indexes the Surge XT Synthesizer documentation. It provides tools for AI models to efficiently search and navigate the documentation to assist with sound design and recreation.

Setup

Ensure you have Bun installed.

bun install
bun run build
bun run ingest

The ingest step will download the latest documentation from the surge repository and create a data/chunks.json file.

Tools Provided

  • search_docs(query: string, top_k?: number) - Full text search for docs.
  • get_section(section: string) - Fetch the content of a specific heading path (e.g. Oscillators > Wavetable).
  • list_sections() - Explore the document structure.
  • get_parameter_info(parameter_name: string) - Get specific info about knobs and parameters.

Client Configurations

Claude Desktop

Add this to your claude_desktop_config.json:

{
  "mcpServers": {
    "surgext-mcp": {
      "command": "node",
      "args": ["/path/to/surgext-mcp/dist/index.js"]
    }
  }
}

Cursor

In your .cursor/settings.json or global cursor settings under MCP configuration:

{
  "mcp": {
    "servers": {
      "surgext-mcp": {
        "command": "node",
        "args": ["/path/to/surgext-mcp/dist/index.js"]
      }
    }
  }
}

OpenCode

Add the following to your opencode.json configuration:

{
  "mcpServers": {
    "surgext-mcp": {
      "command": "node",
      "args": ["/path/to/surgext-mcp/dist/index.js"]
    }
  }
}

Sample System Prompt for Sound Recreation

If you are using this MCP server to help an AI recreate a specific sound, use this prompt to guide the model:

You are an expert synthesizer patch designer specializing in Surge XT. You have access to the Surge XT Docs MCP server.

When recreating a sound, follow these steps:
1. Use `list_sections()` to understand the available documentation structure.
2. If you are unsure about the overall synth architecture or a specific feature, use `search_docs()`.
3. When deciding how to set a specific knob or control, use `get_parameter_info()` to read the exact documentation for that parameter.
4. Synthesize the patch step-by-step based on your findings.