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

@song-auracles/mcp

v0.1.5

Published

MCP server for the Song Auracles API — search recordings, compositions, and projects for use with Claude, GPT, and other LLMs

Readme

@song-auracles/mcp

Imogen MCP server for searching public and private recordings, compositions, and projects.

This package is a local stdio MCP server. In most clients, you run it directly with:

npx -y @song-auracles/mcp

Default API configuration:

  • IMOGEN_API_URL defaults to https://staging.api.auracles.io/song
  • SA_API_KEY is optional for public data and required for private data

Requirements

  • Node.js 18+
  • npx

Claude Desktop

Add this MCP server to your Claude Desktop MCP config:

{
  "mcpServers": {
    "imogen": {
      "command": "npx",
      "args": ["-y", "@song-auracles/mcp"],
      "env": {
        "SA_API_KEY": "sa_your_key_here"
      }
    }
  }
}

If you want to point at a different backend, add IMOGEN_API_URL:

{
  "mcpServers": {
    "imogen": {
      "command": "npx",
      "args": ["-y", "@song-auracles/mcp"],
      "env": {
        "SA_API_KEY": "sa_your_key_here",
        "IMOGEN_API_URL": "https://your-api-domain.com"
      }
    }
  }
}

After saving the config, restart Claude Desktop.

Claude Code

Add the server with the Claude CLI:

claude mcp add imogen --env SA_API_KEY=sa_your_key_here -- npx -y @song-auracles/mcp

With a custom backend:

claude mcp add imogen \
  --env SA_API_KEY=sa_your_key_here \
  --env IMOGEN_API_URL=https://your-api-domain.com \
  -- npx -y @song-auracles/mcp

Verify it:

claude mcp get imogen

Codex

Add the server with the Codex CLI:

codex mcp add imogen --env SA_API_KEY=sa_your_key_here -- npx -y @song-auracles/mcp

With a custom backend:

codex mcp add imogen \
  --env SA_API_KEY=sa_your_key_here \
  --env IMOGEN_API_URL=https://your-api-domain.com \
  -- npx -y @song-auracles/mcp

Verify it:

codex mcp list
codex mcp get imogen

ChatGPT

ChatGPT custom connectors use remote MCP servers over HTTP or SSE, not local stdio servers launched with npx.

That means this package cannot be installed into ChatGPT directly as-is.

To use Imogen with ChatGPT, you need to deploy a remote MCP server endpoint and then add that remote URL inside ChatGPT's connector settings. If you only need local MCP usage, use Claude Desktop, Claude Code, or Codex instead.

Environment Variables

  • SA_API_KEY: optional for public data, required for private data
  • IMOGEN_API_URL: optional override for the API base URL

Troubleshooting

If the server starts but tools return 404 errors:

  • Check that IMOGEN_API_URL points to the correct backend
  • The server supports both root URLs like https://api.example.com and versioned URLs like https://api.example.com/v1

If npx cannot launch the package:

  • Confirm Node.js 18+ is installed
  • Run npx -y @song-auracles/mcp manually to inspect startup errors

Official MCP References

  • Claude Code MCP docs: https://docs.anthropic.com/en/docs/claude-code/mcp
  • Claude Desktop MCP help: https://support.anthropic.com/en/articles/10949351-getting-started-with-local-mcp-servers-on-claude-desktop
  • OpenAI MCP docs: https://platform.openai.com/docs/mcp
  • Codex MCP docs example: https://platform.openai.com/docs/docs-mcp