- Home
- MCP servers
- AdCraft
AdCraft
- javascript
0
GitHub Stars
javascript
Language
4 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
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.
How to use
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.
How to install
Prerequisites: Node.js and npm installed on your system.
Install dependencies and build the MCP server.
npm install
npm run build
Additional configuration and notes
To 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"]
}
}
}
Tools and capabilities
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.
Available tools
generate_ad_copy
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.