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

@forcrypto/mcp-server

v0.1.1

Published

MCP server for managing your For Crypto store through Claude Desktop

Readme

For Crypto MCP Server

Control your For Crypto store through Claude. Manage listings, analytics, email workflows, discounts, and more using natural language.

Setup

1. Get your API key

Go to Settings > API & Integrations on forcrypto.market and generate a seller API key.

2. Add to Claude Desktop

Open your Claude Desktop config file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json

Add this configuration:

{
  "mcpServers": {
    "forcrypto": {
      "command": "npx",
      "args": ["@forcrypto/mcp-server"],
      "env": {
        "FORCRYPTO_API_KEY": "fcs_your_api_key_here"
      }
    }
  }
}

3. Restart Claude Desktop

After saving the config, restart Claude Desktop. You should see "ForCrypto" in your available tools.

Available Tools

Listings

  • get_listings - List all your listings with title, price, status, and category
  • get_listing - Get full details for a specific listing
  • update_listing - Update title, description, price, or category

Storefront

  • get_storefront - View your seller profile and theme configuration
  • update_theme - Customize colors, fonts, border radius, and layout

Analytics

  • get_analytics - View sales data, revenue, ratings, and conversion metrics

Email

  • get_subscribers - List email subscribers for a listing
  • get_workflow - View drip email workflow configuration
  • create_drip_step - Add a new step to your drip email sequence
  • update_drip_step - Edit an existing drip email step
  • send_broadcast - Send an email to all opted-in subscribers

Discounts

  • get_discounts - View active discount codes for a listing
  • create_discount - Create a new discount code (percentage or fixed amount)

Reviews

  • get_reviews - View reviews and ratings for a listing

Example Prompts

  • "Show me my listings and their sales numbers"
  • "Update the price of my Python course to $29"
  • "Create a 20% off discount code LAUNCH20 for my ebook"
  • "Send a broadcast email to my course subscribers about the new module"
  • "Set up a 3-step drip email sequence for my template pack"
  • "Change my storefront theme to use a dark background with blue accents"

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | FORCRYPTO_API_KEY | Yes | Your seller API key (starts with fcs_) | | FORCRYPTO_API_URL | No | API base URL (defaults to https://forcrypto.market) |

Rate Limits

The seller API allows 60 requests per minute per API key.

Security

  • Your API key is sent via the X-API-Key header over HTTPS
  • Keys are stored as SHA-256 hashes on the server
  • You can revoke and regenerate your key at any time in Settings
  • Each seller account can have one active API key