@productmaker/mcp 0.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +58 -0
- package/dist/http.js +926 -0
- package/dist/stdio.js +843 -0
- package/package.json +43 -0
package/README.md
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
# @productmaker/mcp
|
|
2
|
+
|
|
3
|
+
MCP server for [Product Maker](https://productmaker.app) — generate dropshipping creatives and publish to Shopify / Meta from any MCP-compatible AI client.
|
|
4
|
+
|
|
5
|
+
## Install (Claude Desktop)
|
|
6
|
+
|
|
7
|
+
Add this to `~/Library/Application Support/Claude/claude_desktop_config.json` (or the equivalent on Windows):
|
|
8
|
+
|
|
9
|
+
```json
|
|
10
|
+
{
|
|
11
|
+
"mcpServers": {
|
|
12
|
+
"productmaker": {
|
|
13
|
+
"command": "npx",
|
|
14
|
+
"args": ["-y", "@productmaker/mcp@latest"],
|
|
15
|
+
"env": { "PM_API_KEY": "pm_live_..." }
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
Get your API key at https://productmaker.app/account/api-keys.
|
|
22
|
+
|
|
23
|
+
## Install (ChatGPT, Gemini, claude.ai web)
|
|
24
|
+
|
|
25
|
+
Connect to: `https://mcp.productmaker.app/mcp`
|
|
26
|
+
Header: `Authorization: Bearer pm_live_...`
|
|
27
|
+
|
|
28
|
+
## Tools
|
|
29
|
+
|
|
30
|
+
| Tool | What it does |
|
|
31
|
+
|---|---|
|
|
32
|
+
| `create_product_task` | Full pipeline from product image (extract → angles → video → landing → creatives) |
|
|
33
|
+
| `get_task_status` | Check task progress (optional `waitSeconds` for near-sync polling) |
|
|
34
|
+
| `list_tasks` | List recent tasks |
|
|
35
|
+
| `edit_task_draft` | Edit angle / pain point / persona before generation |
|
|
36
|
+
| `generate_video_creative` | Standalone video creative |
|
|
37
|
+
| `generate_image_creatives` | Standalone image creatives (multiple variants) |
|
|
38
|
+
| `generate_landing` | Standalone landing page |
|
|
39
|
+
| `list_shopify_shops` | List connected Shopify stores |
|
|
40
|
+
| `list_meta_ad_accounts` | List connected Meta ad accounts |
|
|
41
|
+
| `publish_to_shopify` | Publish a completed task to a Shopify store |
|
|
42
|
+
| `publish_to_meta` | Create a Meta Ads campaign from a task (always created PAUSED) |
|
|
43
|
+
|
|
44
|
+
## Environment variables
|
|
45
|
+
|
|
46
|
+
| Var | Default | Required for |
|
|
47
|
+
|---|---|---|
|
|
48
|
+
| `PM_API_KEY` | — | stdio (required) |
|
|
49
|
+
| `PM_API_URL` | `https://api.productmaker.app` | both |
|
|
50
|
+
| `PORT` | `8080` | http only |
|
|
51
|
+
|
|
52
|
+
## Support
|
|
53
|
+
|
|
54
|
+
Issues with the MCP itself: see [productmaker.app/install](https://productmaker.app/install) for setup help, or contact Product Maker support.
|
|
55
|
+
|
|
56
|
+
## License
|
|
57
|
+
|
|
58
|
+
MIT.
|