Skip to Content
The Makinari API repo now includes an MCP Server — connect your AI models directly. View on GitHub →
MCP ServerToolsCopywritingPOST

Copywriting

Manage copywriting templates and approved copies. Use action=“create” to create new copy (requires title, copy_type, content). Use action=“update” to update existing copy (requires copywriting_id). Use action=“list” to get copies with filters. Use action=“get” to get a single copy by id. Use action=“delete” to remove a copy.

Input Schema

ParameterTypeDescription
actionstringAction to perform on copywriting templates. Enum: create, list, update, delete, get
copywriting_idstringCopywriting UUID (required for update/delete/get single)
titlestringTitle of the copy (required for create)
copy_typestringType of copy (required for create). Enum: email, sms, whatsapp, web_content, social_media, ad_copy, sales_script, other
contentstringThe actual text content of the copy (required for create)
statusstringStatus of the copy. Use “approved” for ready-to-use content. Enum: draft, review, approved, archived
target_audiencestringWho this copy is intended for
use_casestringWhen to use this copy
notesstringInternal notes about this copy
tagsarrayTags for categorization
site_idstringFilter by site UUID
user_idstringFilter by user UUID
searchstringText search in title, content, target_audience
limitnumberMax results (default 50)
offsetnumberPagination offset

REST Endpoint

Actions map to sub-routes: create/create, list/get, update/update, delete/delete.

POST /api/agents/tools/copywriting/create POST /api/agents/tools/copywriting/get POST /api/agents/tools/copywriting/update POST /api/agents/tools/copywriting/delete
POST /api/agents/tools/copywriting/create Authorization: Bearer YOUR_API_KEY Content-Type: application/json { "site_id": "YOUR_SITE_ID", "title": "Cold Email — SaaS Intro", "copy_type": "email", "content": "Hi {{name}}, I wanted to reach out...", "status": "approved", "target_audience": "SaaS founders" }

Response:

{ "success": true, "copywriting": { "id": "...", "title": "Cold Email — SaaS Intro" } }
Last updated on