home / mcp / adcraft mcp server
Provides an MCP server wrapper around AdCraft's ad copy API to generate platform-optimized ads with multiple tones.
Configuration
View docs{
"mcpServers": {
"automatikstudio-adcraft-mcp": {
"command": "node",
"args": [
"/path/to/adcraft-mcp/dist/index.js"
]
}
}
}AdCraft MCP Server provides a local MCP endpoint that wraps AdCraft's ad copy API, enabling AI-powered ad generation for multiple platforms. You can integrate it with MCP clients to generate platform-optimized headlines, descriptions, and CTAs in various tones and styles, directly from product descriptions and target audiences.
You will run the AdCraft MCP Server locally and connect to it from your MCP client. Once configured, you can generate platform-specific ad copy by calling the generate_ad_copy tool with your product details, target audience, platform, and preferred tone. The server handles platform formatting, word limits, and tone options, returning a ready-to-use ad copy payload that includes a headline, description, call-to-action, and a formatted version.
Prerequisites: Node.js and npm installed on your system.
Install dependencies and build the MCP server.
npm install
npm run buildTo run the MCP server with your MCP client, configure your client to point to the stdio server as shown in the example below. This sets the node runtime to execute the built MCP index.
{
"mcpServers": {
"adcraft": {
"command": "node",
"args": ["/path/to/adcraft-mcp/dist/index.js"]
}
}
}Tool: generate_ad_copy - Generates platform-optimized ad copy for products. You provide the product name, target audience, platform, and an optional tone. The server returns a structured ad copy payload tailored to Facebook, Google, or LinkedIn formatting and guidelines.
Generates platform-optimized ad copy for products by accepting product name, target audience, platform, and tone, and returning a structured payload with headline, description, CTA, and formatted output.