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

contentforge-mcp

v0.2.1

Published

Content pipeline MCP server — topic research, image sourcing, SEO metadata, affiliate links, and CMS publishing

Readme

@gentry-ai-bot/contentforge

Content pipeline MCP server — from topic research to published article in one workflow.

ContentForge is a Model Context Protocol (MCP) server that provides AI agents and LLM clients with tools for the full content creation pipeline: topic research → image sourcing → SEO metadata → affiliate link enrichment → CMS publishing.

Available Tools

| Tool | Description | |------|-------------| | list_sites | List all available sites and their categories from the CMS | | source_images | Search for stock images on Pexels (URLs, alt text, photographer credit) | | seo_metadata | Generate SEO metadata: slug, meta description, schema.org markup, internal link suggestions | | enrich_links | Scan article content for Amazon product URLs and add affiliate tags | | publish_article | Publish a complete article to the CMS (with auto-categorization and tag support) | | get_existing_articles | Retrieve existing articles from a site (for internal linking and dedup) |

Quick Start

Option 1: Stdio Mode (local, via npx)

npx @gentry-ai-bot/contentforge --stdio

Option 2: Hosted Mode (SSE, remote)

Connect to the hosted instance:

  • SSE endpoint: https://bubbly-optimism-production.up.railway.app/sse
  • Messages endpoint: https://bubbly-optimism-production.up.railway.app/messages
  • Health check: https://bubbly-optimism-production.up.railway.app/health

Requires an API key via the x-api-key header.

MCP Client Configuration

Claude Desktop

Add to your claude_desktop_config.json:

Stdio mode (local):

{
  "mcpServers": {
    "contentforge": {
      "command": "npx",
      "args": ["@gentry-ai-bot/contentforge", "--stdio"],
      "env": {
        "CONTENTFORGE_CMS_URL": "https://your-cms-api.example.com",
        "CONTENTFORGE_CMS_KEY": "your-cms-api-key",
        "CONTENTFORGE_PEXELS_KEY": "your-pexels-api-key",
        "CONTENTFORGE_AMAZON_TAG": "your-affiliate-tag"
      }
    }
  }
}

Hosted mode (SSE):

{
  "mcpServers": {
    "contentforge": {
      "url": "https://bubbly-optimism-production.up.railway.app/sse",
      "headers": {
        "x-api-key": "your-api-key"
      }
    }
  }
}

Other MCP Clients

Any MCP-compatible client can connect via:

  • Stdio: Run npx @gentry-ai-bot/contentforge --stdio as a subprocess
  • SSE: Connect to the /sse endpoint with an x-api-key header

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | CONTENTFORGE_CMS_URL | Yes (stdio) | CMS API base URL | | CONTENTFORGE_CMS_KEY | Yes (stdio) | CMS API key | | CONTENTFORGE_PEXELS_KEY | Yes | Pexels API key for image sourcing | | CONTENTFORGE_AMAZON_TAG | No | Amazon affiliate tag (default: pickwise05-20) | | CONTENTFORGE_API_KEY | No | API key for hosted mode authentication | | PORT | No | HTTP server port (default: 3000) |

Authentication

  • Stdio mode: No auth needed — runs locally as a subprocess
  • Hosted mode: Pass your API key via the x-api-key HTTP header on both /sse and /messages endpoints
  • Rate limited to 100 requests/hour per API key

How It Works

  1. Research — Use list_sites and get_existing_articles to understand what content exists
  2. Source Images — Use source_images to find relevant stock photography from Pexels
  3. Optimize — Use seo_metadata to generate slugs, meta descriptions, and schema.org markup
  4. Monetize — Use enrich_links to automatically add affiliate tags to product links
  5. Publish — Use publish_article to push the finished article to your CMS

License

MIT