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

@spideriq/mcp-media

v1.1.0

Published

SpiderIQ Media MCP Server — SpiderMedia files, videos, and the per-tenant media catalog (read) for AI assistants

Readme

@spideriq/mcp-media

Atomic MCP server for SpiderMedia — file/video management plus the read-only per-tenant media catalog. 17 tools (8 shared + 6 file/video + 3 catalog).

Part of the SpiderIQ MCP catalog. See @spideriq/mcp for the kitchen-sink variant that includes every slice and @spideriq/cli for the command-line variant.

Why this package

  • Focused toolset. Only SpiderMedia tools — well under the ~128-tool ceiling some IDEs impose (Antigravity, some OpenAI Responses deployments).
  • Less context noise. Fewer tool schemas injected into the LLM context means more room for actual work.
  • Product-aligned. Media-only agents don't load content, lead-gen, email, or gateway tools.

Install

{
  "mcpServers": {
    "spideriq-media": {
      "command": "npx",
      "args": ["-y", "@spideriq/mcp-media"],
      "env": {
        "SPIDERIQ_FORMAT": "yaml",
        "npm_config_registry": "https://npm.spideriq.ai"
      }
    }
  }
}

Then restart your IDE (Claude Code, Cursor, Antigravity, Windsurf).

Authenticate

First time only — the server exposes the standard SpiderIQ PAT flow:

  1. Ask the agent to call request_access with your admin email
  2. Admin approves via email link
  3. Token is saved to ~/.spideriq/credentials.json and every subsequent call uses it

See SpiderCLI authentication docs for the full flow diagram.

Tools included

Shared (8): request_access, check_access_status, get_auth_status, logout, list_workspaces, health_check, get_queue_stats, get_api_info.

File / video (6): import_from_url, list_files, delete_file, list_videos, get_video_status, get_media_stats. These operate on a provisioned media bucket (carried 1:1 from @spideriq/mcp-publish, where they still work unchanged).

Catalog — read-only (3): catalog_list_assets, catalog_get_asset, catalog_search_assets. These read the per-tenant media_assets DAM catalog, which spans every storage tier (SeaweedFS / R2 / PeerTube) and asset kind (image / video / doc) — broader than list_files/list_videos, which only see one provisioned bucket. Each accepts format: json|yaml|md.

Safety (Mux pattern): the catalog tools are read-only. The only destructive media tool is delete_file (bucket-scoped, carried for back-compat). There is no catalog delete/purge tool.

See also