home / mcp / copyforge mcp server

CopyForge MCP Server

Provides an MCP server that wraps CopyForge's AI-powered product description API for SEO-ready, platform-specific copy.

Installation
Add the following to your MCP client configuration file.

Configuration

View docs
{
  "mcpServers": {
    "automatikstudio-copyforge-mcp": {
      "command": "npx",
      "args": [
        "copyforge-mcp"
      ],
      "env": {
        "ANTHROPIC_API_KEY": "YOUR_API_KEY"
      }
    }
  }
}

CopyForge MCP Server provides an MCP (Model Context Protocol) interface that wraps CopyForge's AI-powered product description generation API. You can generate compelling e-commerce copy for products across multiple platforms by configuring a local MCP server and issuing copy generation requests through your MCP client. This server focuses on flexible tone, platform-specific copy, and an SEO-ready output set to help you scale product descriptions efficiently.

How to use

You run the CopyForge MCP Server locally and connect to it using any MCP client. When you send a generate_product_copy request, you provide the product name, features, tone, and target platform. The server returns a complete copy package that includes a product description, bullet points, SEO metadata, and keywords. Use the resulting data to publish product pages, listings, or marketing materials across Shopify, Amazon, Etsy, eBay, WooCommerce, or general e-commerce scenarios.

How to install

Prerequisites you need before installing: Node.js (at least v14) and npm. Ensure your environment can run shell commands and install npm packages.

# Install the MCP server package
npm install copyforge-mcp

# Alternative: install from source
git clone <repo>
cd copyforge-mcp
npm install
npm run build

Additional setup and usage notes

Configure your Anthropic API key to enable AI-powered copy generation. You set the API key in your environment before starting the server.

export ANTHROPIC_API_KEY=your_api_key_here

Configuration examples for local MCP clients

The following configuration blocks show how you can register CopyForge MCP with desktop and server clients. They assume you have the API key available in your environment.

# Claude Desktop configuration
{
  "mcpServers": {
    "copyforge": {
      "command": "npx",
      "args": ["copyforge-mcp"],
      "env": {
        "ANTHROPIC_API_KEY": "your_api_key_here"
      }
    }
  }
}
# OpenClaw configuration
mcp_servers:
  copyforge:
    command: npx copyforge-mcp
    env:
      ANTHROPIC_API_KEY: ${ANTHROPIC_API_KEY}

Available tools

generate_product_copy

Generates a complete set of e-commerce copy for a product, including description, bullet points, SEO metadata, and keywords, with adjustable tone and target platform.