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

clustova-mcp

v1.0.2

Published

MCP server for Clustova AI content generation — SERP analysis, content creation, and humanization with markdown output

Downloads

309

Readme

clustova-mcp

MCP server for Clustova — AI-powered content generation with SERP analysis, content creation, and humanization. Outputs markdown with YAML frontmatter and JSON-LD schema.

Prerequisites

Installation

npm install -g clustova-mcp

Or run directly with npx:

npx clustova-mcp

Setup

1. Get your API token

Login to Clustova and get your JWT token from Settings → API Access.

2. Configure your AI client

Add to your MCP client config:

Claude Desktop (~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "clustova": {
      "command": "npx",
      "args": ["-y", "clustova-mcp"],
      "env": {
        "CLUSTOVA_API_TOKEN": "eyJhbGciOiJIUzI1NiIs..."
      }
    }
  }
}

Cursor (.cursor/mcp.json):

{
  "mcpServers": {
    "clustova": {
      "command": "npx",
      "args": ["-y", "clustova-mcp"],
      "env": {
        "CLUSTOVA_API_TOKEN": "eyJhbGciOiJIUzI1NiIs..."
      }
    }
  }
}

Tools

generate_content

Generate SEO-optimized blog posts using the full Clustova pipeline (SERP analysis → content generation → humanization).

Parameters:

| Parameter | Type | Default | Description | |-----------|------|---------|-------------| | topics | string[] | (required) | Array of topics | | contentType | enum | blog_post | blog_post, tutorial, product_description, news, review, comparison, howto, listicle, affiliate | | tone | enum | professional | professional, casual, friendly, authoritative | | language | string | en | Language code (en, es, fr, de, etc.) | | wordCount | number | 1500 | Target words per topic (100–5000) | | country | string | us | Country code for SERP targeting |

Example:

Generate a blog post comparing kubernetes vs docker swarm with a professional tone, 2000 words

The tool automatically checks your quota before submitting. If you don't have enough words or topics remaining, it will tell you instead of failing.

get_quota

Check your word balance, topic limit, site usage, and current plan.

check_status

Check the progress of a running job by its ID.

list_jobs

List your recent content generation jobs.

Output Format

Content is returned as markdown with YAML frontmatter and JSON-LD schema:

---
title: "Kubernetes vs Docker Swarm in 2026"
slug: "kubernetes-vs-docker-swarm"
seo_title: "Kubernetes vs Docker Swarm | Complete Comparison"
meta_description: "Compare Kubernetes and Docker Swarm..."
focus_keyword: "kubernetes vs docker swarm"
tags: ["kubernetes", "docker", "devops"]
schema_type: "Article"
word_count: 1523
---

## Introduction

Kubernetes has become the de facto standard...

## Comparison Table

| Feature | Kubernetes | Docker Swarm |
|---------|-----------|--------------|
| Setup   | Complex   | Simple       |

---

<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "Article",
  "headline": "Kubernetes vs Docker Swarm in 2026",
  ...
}
</script>

Environment Variables

| Variable | Default | Description | |----------|---------|-------------| | CLUSTOVA_API_TOKEN | (required) | JWT token for authentication | | CLUSTOVA_API_URL | https://api.clustova.com/api/v1 | API endpoint URL |

Development

# Install dependencies
npm install

# Build
npm run build

# Run locally
CLUSTOVA_API_TOKEN=your-jwt npm start

License

MIT