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

@appcellent/supaseo

v1.0.0

Published

MCP Server for SEO content creation with keyword research, content writing, image prompts, and quality checking

Readme

SupaSEO - MCP Server for SEO Content Creation

AI-powered SEO content creation tools via Model Context Protocol (MCP).

Features

  • keyword_research - Keyword data via DataForSEO (volume, CPC, difficulty, related keywords)
  • content_write - SEO-optimized content generation via Claude AI
  • image_prompt - AI image prompts for Midjourney/DALL-E
  • quality_check - SEO analysis (readability, keyword density, structure)

Installation

npm install @appcellent/supaseo

Or clone and build:

git clone https://github.com/appcellent/supaseo.git
cd supaseo
npm install
npm run build

Configuration

Create a .env file:

DATAFORSEO_LOGIN=your_login
DATAFORSEO_PASSWORD=your_password
ANTHROPIC_API_KEY=your_api_key

Usage with Claude Desktop

Add to ~/.claude/claude_desktop_config.json:

{
  "mcpServers": {
    "supaseo": {
      "command": "npx",
      "args": ["@appcellent/supaseo"],
      "env": {
        "DATAFORSEO_LOGIN": "your_login",
        "DATAFORSEO_PASSWORD": "your_password",
        "ANTHROPIC_API_KEY": "your_api_key"
      }
    }
  }
}

CLI Testing

# Keyword research
npm run test:keyword "your keyword"

# Content generation
npm run test:content "your keyword"

# Image prompts
npm run test:image "your keyword"

# Quality check
npm run test:quality "your keyword"

Output files are saved to ./output/ folder.

Tools

keyword_research

Research keywords with search volume, CPC, difficulty, and related keywords.

Input:

  • keyword (string) - Seed keyword
  • country (US, UK, TR, etc.) - Target country
  • language (en, tr, etc.) - Language code
  • limit (number) - Max related keywords

content_write

Generate SEO-optimized content with Claude AI.

Input:

  • keyword (string) - Target keyword
  • title (string) - Article title
  • type (guide, listicle, review, comparison, tutorial, news)
  • wordCount (number) - Target word count
  • tone (professional, casual, friendly, authoritative)
  • includeSchema (boolean) - Include Schema.org JSON-LD
  • includeFAQ (boolean) - Include FAQ section

image_prompt

Generate AI image prompts for Midjourney and DALL-E.

Input:

  • keyword (string) - Main topic
  • title (string) - Context title
  • style (modern, vintage, illustration, photorealistic, etc.)
  • count (number) - Number of prompts
  • aspectRatio (16:9, 4:3, 1:1, etc.)
  • purpose (featured, hero, thumbnail, social)

quality_check

Analyze content for SEO quality.

Input:

  • content (string) - Markdown content
  • targetKeyword (string) - Primary keyword
  • secondaryKeywords (string[]) - Optional secondary keywords

Output:

  • Overall SEO score (0-100)
  • Readability (Flesch-Kincaid)
  • Keyword density
  • Content structure analysis
  • Issues and suggestions

License

MIT