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

@lucapimenta/copywriting-mcp

v1.0.0

Published

Copywriting MCP Server — Direct Response quality gates, validation, and semantic search

Readme


O que e

Servidor MCP (Model Context Protocol) que fornece 10 ferramentas de validacao de qualidade para copywriting Direct Response. Usado pelo Copy Chief BLACK para enforcar quality gates automaticamente.

Instalacao

npx @lucapimenta/copywriting-mcp install

Ferramentas MCP

| Ferramenta | Descricao | |------------|-----------| | validate_gate | Avanca fase do pipeline (Research → Briefing → Production → Delivery) | | blind_critic | Critica cega — avalia copy sem saber o contexto/oferta | | emotional_stress_test | Testa intensidade emocional e calibragem DRE | | black_validation | Validacao final BLACK (pre-delivery) | | semantic_memory_search | Busca semantica em swipe files e referencias | | layered_review | Review em 5 camadas (estrutura, emocao, logica, CTA, compliance) | | voc_search | Busca em base de VOC (Voice of Customer) | | get_phase_context | Retorna contexto da fase atual do pipeline | | create_mecanismo | Cria/valida Mecanismo Unico (MUP + MUS) | | get_mecanismo | Recupera mecanismo ativo de uma oferta |

Como Funciona

Claude Code → MCP Protocol → Copywriting Server → SQLite + Embeddings
                                    ↓
                              10 Quality Tools
                                    ↓
                           Validation Results → Claude

O servidor:

  1. Recebe chamadas via MCP protocol
  2. Consulta SQLite para estado de ofertas, gates, mecanismos
  3. Usa embeddings para busca semantica em swipes/VOC
  4. Retorna resultados estruturados para o Claude

Arquitetura

~/.claude/plugins/copywriting-mcp/
  src/
    server.js               Entry point do MCP server
    tools/                  10 ferramentas
      validate-gate.js
      blind-critic.js
      emotional-stress-test.js
      black-validation.js
      semantic-memory-search.js
      layered-review.js
      voc-search.js
      phase-context.js
      create-mecanismo.js
      get-mecanismo.js
    db/
      sqlite.js             Database manager
      embeddings.js          Embedding generator
      schema.sql             Database schema
  prompts/
    blind-critic.md         Prompt de critica cega
    stress-test.md          Prompt de estresse emocional
    black-validation.md     Prompt de validacao BLACK
  data/
    copywriting.db          SQLite database (gerado)

Instalacao Manual

# 1. Clone
git clone https://github.com/lckx777/copywriting-mcp.git
cd copywriting-mcp

# 2. Instale
node bin/cli.js install
# Copia server/ para ~/.claude/plugins/copywriting-mcp/
# Roda npm install
# Atualiza mcp.json

# 3. Ou instale via npx
npx @lucapimenta/copywriting-mcp install

# 4. Listar ferramentas
npx @lucapimenta/copywriting-mcp tools

Configuracao

O installer adiciona automaticamente ao ~/.claude/mcp.json:

{
  "mcpServers": {
    "copywriting": {
      "command": "node",
      "args": ["~/.claude/plugins/copywriting-mcp/src/server.js"],
      "env": {
        "COPYWRITING_ECOSYSTEM": "~/copywriting-ecosystem"
      }
    }
  }
}

Requisitos

  • Node.js >= 18
  • Copy Chief BLACK instalado (npx @lucapimenta/copy-chief-black install)
  • Claude Code com suporte a MCP

Pacotes Relacionados

| Pacote | Descricao | |--------|-----------| | @lucapimenta/copy-chief-black | Core framework (obrigatorio) | | @lucapimenta/copy-chief-dashboard | Dashboard Next.js (opcional) |

Licenca

MIT — LICENSE