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

@easybits.cloud/mcp

v0.1.8

Published

Easybits MCP server — stdio transport that proxies to the Easybits Streamable HTTP endpoint

Readme

EasyBits MCP Server

Connect your AI agents to EasyBits — a digital asset marketplace for creators. Upload files, share content, optimize images, manage websites, and more — all through natural language.

Quick Start

1. Get your API key

Sign up at easybits.cloud and generate an API key from your developer dashboard.

2. Configure your client

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "easybits": {
      "command": "npx",
      "args": ["-y", "@easybits.cloud/mcp"],
      "env": {
        "EASYBITS_API_KEY": "your-api-key"
      }
    }
  }
}

Claude Code

claude mcp add easybits -- npx -y @easybits.cloud/mcp

Then set your API key in ~/.easybitsrc:

EASYBITS_API_KEY=your-api-key

Cursor

Add to your Cursor MCP settings:

{
  "mcpServers": {
    "easybits": {
      "command": "npx",
      "args": ["-y", "@easybits.cloud/mcp"],
      "env": {
        "EASYBITS_API_KEY": "your-api-key"
      }
    }
  }
}

3. Start using it

Ask your AI agent things like:

  • "Upload this PDF and make it public"
  • "Show me my recent files"
  • "Optimize that PNG to WebP"
  • "Create a share link for my latest file"
  • "Search my files for invoices"

Tools (22)

Files

| Tool | Description | |------|-------------| | list_files | List files with pagination and filtering | | get_file | Get file metadata and a signed download URL (1h expiry) | | upload_file | Create a file record and get a presigned upload URL | | update_file | Update name, access level, or metadata | | delete_file | Soft-delete a file (recoverable for 7 days) | | restore_file | Restore a soft-deleted file | | list_deleted_files | List deleted files with days until permanent purge | | search_files | AI-powered natural language file search (requires AI key) |

Sharing

| Tool | Description | |------|-------------| | share_file | Share a file with another user by email | | generate_share_token | Generate a presigned download URL (60s–7 days) | | list_share_tokens | List all share tokens with expiration status |

Images

| Tool | Description | |------|-------------| | optimize_image | Convert images to WebP or AVIF with quality control | | transform_image | Resize, rotate, flip, convert format, or apply grayscale |

AI Configuration

| Tool | Description | |------|-------------| | set_ai_key | Store an AI provider API key (Anthropic/OpenAI) for search | | list_ai_keys | List configured AI keys (masked) | | delete_ai_key | Remove a stored AI key |

Storage

| Tool | Description | |------|-------------| | list_providers | List configured storage providers |

Websites

| Tool | Description | |------|-------------| | list_websites | List all websites with stats | | create_website | Create a new website with auto-generated slug | | get_website | Get website details and computed stats | | update_website | Update website name or status | | delete_website | Delete website and soft-delete associated files |

Configuration

| Variable | Description | Required | |----------|-------------|----------| | EASYBITS_API_KEY | Your EasyBits API key | Yes | | EASYBITS_URL | Custom API base URL | No |

You can also set these in a ~/.easybitsrc file:

EASYBITS_API_KEY=eb_your_key_here

Transport

This package is a stdio-to-HTTP proxy. It reads JSON-RPC messages from stdin and forwards them to the EasyBits MCP endpoint (https://www.easybits.cloud/api/mcp). Responses are streamed back via Server-Sent Events (SSE).

Requirements

  • Node.js 18+
  • An EasyBits account with an API key

Links

License

MIT