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

soropg-mcp

v0.1.1

Published

MCP server for connecting coding agents to Soroban Playground workspaces.

Readme

SoroPG MCP Server

soropg-mcp lets MCP-compatible coding agents work with Soroban Playground workspaces. It connects your local MCP client to the SoroPG browser IDE through the SoroPG API.

MCP client -> soropg-mcp over stdio -> SoroPG API -> open browser IDE workspace

The server does not copy your project to disk and does not need to be run from the Soroban Playground repository.

Prerequisites

  • Node.js 20 or newer.
  • A SoroPG browser tab with the AI Assisted Development / MCP Setup panel open.
  • A SoroPG MCP API key from that panel.

Quick Check

Run this once to make sure Node can start the published MCP server:

npx soropg-mcp --help

You do not need to keep this command running. The command speaks MCP over stdio, so it is normally started by Claude Code, Codex, or another MCP client from the configuration below.

Environment Variables

SOROPG_API_KEY is required unless you use a config file.

SOROPG_API_KEY=your-key-from-soropg
SOROPG_API_URL=https://soropg.com
SOROPG_PROJECT_ID=workspace-id
  • SOROPG_API_KEY: required API key from the SoroPG AI Assisted Development / MCP Setup panel.
  • SOROPG_API_URL: optional API URL. Defaults to https://soropg.com.
  • SOROPG_PROJECT_ID: optional default workspace id. You can also pass projectId to each tool.
  • SOROPG_CONFIG: optional path to a JSON config file.

Default config file location:

~/.config/soropg-mcp/config.json

Example config file:

{
  "apiUrl": "https://soropg.com",
  "apiKey": "your-key-from-soropg",
  "projectId": "workspace-id"
}

Claude Code Config

Add this to your Claude Code MCP configuration:

{
  "mcpServers": {
    "soropg": {
      "command": "npx",
      "args": ["-y", "soropg-mcp"],
      "env": {
        "SOROPG_API_KEY": "your-key-from-soropg"
      }
    }
  }
}

Codex Config

Add this to ~/.codex/config.toml:

[mcp_servers.soropg]
command = "npx"
args = ["-y", "soropg-mcp"]
env = { SOROPG_API_KEY = "your-key-from-soropg" }

Tools

  • soropg_list_projects
  • soropg_get_project
  • soropg_list_files
  • soropg_read_file
  • soropg_create_file
  • soropg_replace_file
  • soropg_apply_patch
  • soropg_delete_file
  • soropg_move_file
  • soropg_run_command

soropg_apply_patch expects unified diff hunks for one target file. Include @@ -old,+new @@ hunk headers. Do not send raw inserted + lines or Codex *** Begin Patch format; use soropg_replace_file for full-file rewrites.

Allowed commands are build, test, and audit. deploy is present for tool compatibility but returns unsupported in v1 so wallet signing stays in the browser flow.

Troubleshooting

Run npx soropg-mcp --help to confirm Node can start the MCP server.

If your MCP client says the server exited, check that SOROPG_API_KEY is set or that ~/.config/soropg-mcp/config.json contains apiKey.

If tools cannot find a workspace, keep the SoroPG browser IDE tab open and run soropg_list_projects. Set SOROPG_PROJECT_ID only after you know the workspace id.

If you are using a local SoroPG development server, set SOROPG_API_URL, for example:

SOROPG_API_URL=http://127.0.0.1:3003

Publishing

Prepare the package locally:

cd mcp
npm login
npm whoami
npm run build
npm pack

Check the generated .tgz contains only the expected package files. Then publish manually:

npm publish --access public