creator-mcp 1.0.1 → 1.0.3

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 ADDED
@@ -0,0 +1,245 @@
1
+ # Creator OS MCP
2
+
3
+ MCP server for Creator OS. Connect your Creator OS cloud workspace to MCP-compatible clients and let them work with your content pipeline, brand deals, analytics, AI tools, billing, social integrations, pitch pack, and support data.
4
+
5
+ The package is published as [`creator-mcp`](https://www.npmjs.com/package/creator-mcp) and runs as a local `stdio` MCP server.
6
+
7
+ ## What it includes
8
+
9
+ - 54 tools across pipeline, deals, AI, analytics, billing, pitch, social, support, and admin workflows
10
+ - 5 read-only resources for profile, pipeline, deals, analytics, and subscription context
11
+ - 4 reusable prompts for strategy, negotiations, analytics review, and idea brainstorming
12
+ - Token-only setup for end users via `CREATOR_OS_TOKEN`
13
+ - Backward compatibility with Supabase JWTs
14
+ - Built for the hosted Creator OS product
15
+
16
+ ## Requirements
17
+
18
+ - Node.js 18+
19
+ - An active Creator OS account
20
+ - A valid Creator OS MCP token generated from your dashboard
21
+
22
+ ## Install
23
+
24
+ You usually do not install this package globally. Most MCP clients can run it directly with `npx`.
25
+
26
+ ### Claude Code
27
+
28
+ ```bash
29
+ claude mcp add creator-os --scope user --env CREATOR_OS_TOKEN=YOUR_TOKEN -- npx -y creator-mcp@latest
30
+ ```
31
+
32
+ ### Claude Desktop
33
+
34
+ ```json
35
+ {
36
+ "mcpServers": {
37
+ "creator-os": {
38
+ "command": "npx",
39
+ "args": ["-y", "creator-mcp@latest"],
40
+ "env": {
41
+ "CREATOR_OS_TOKEN": "YOUR_TOKEN"
42
+ }
43
+ }
44
+ }
45
+ }
46
+ ```
47
+
48
+ ### Cursor
49
+
50
+ ```json
51
+ {
52
+ "mcpServers": {
53
+ "creator-os": {
54
+ "command": "npx",
55
+ "args": ["-y", "creator-mcp@latest"],
56
+ "env": {
57
+ "CREATOR_OS_TOKEN": "YOUR_TOKEN"
58
+ }
59
+ }
60
+ }
61
+ }
62
+ ```
63
+
64
+ ### Generic local MCP config
65
+
66
+ If your client supports local `stdio` servers, use:
67
+
68
+ ```json
69
+ {
70
+ "command": "npx",
71
+ "args": ["-y", "creator-mcp@latest"],
72
+ "env": {
73
+ "CREATOR_OS_TOKEN": "YOUR_TOKEN"
74
+ }
75
+ }
76
+ ```
77
+
78
+ ## Authentication
79
+
80
+ Set `CREATOR_OS_TOKEN` to one of the following:
81
+
82
+ - `mcp_...` token generated by Creator OS
83
+ - Supabase access token JWT for backward compatibility
84
+
85
+ For commercial cloud usage, end users only need:
86
+
87
+ ```bash
88
+ CREATOR_OS_TOKEN=YOUR_TOKEN
89
+ ```
90
+
91
+ ### How to generate a token
92
+
93
+ 1. Log in to Creator OS
94
+ 2. Open `Settings`
95
+ 3. Open the `MCP` section
96
+ 4. Generate a new MCP token
97
+ 5. Copy the `mcp_...` token into your MCP client config
98
+
99
+ The recommended setup is always a Creator OS MCP token. Supabase JWT support exists only for backward compatibility.
100
+
101
+ ## Tool catalog
102
+
103
+ ### Pipeline and content
104
+
105
+ - `list_pipeline_videos`
106
+ - `get_pipeline_video`
107
+ - `update_pipeline_video`
108
+ - `capture_to_pipeline`
109
+ - `list_saved_ideas`
110
+ - `save_idea`
111
+ - `generate_video_idea`
112
+ - `generate_thumbnail`
113
+ - `send_thumbnail_reference`
114
+
115
+ ### Deals and sponsorships
116
+
117
+ - `list_deals`
118
+ - `get_deal`
119
+ - `create_deal`
120
+ - `update_deal`
121
+ - `export_deals_to_sheets`
122
+ - `generate_coupon_message`
123
+ - `list_coupons`
124
+ - `send_coupon`
125
+ - `submit_brand_proposal`
126
+
127
+ ### AI
128
+
129
+ - `get_ai_suggestions`
130
+ - `ai_chat`
131
+ - `save_ai_key`
132
+ - `test_ai_key`
133
+ - `delete_ai_key`
134
+
135
+ ### Analytics
136
+
137
+ - `get_youtube_analytics`
138
+ - `fetch_youtube_data`
139
+ - `fetch_youtube_channel`
140
+ - `get_video_analytics_snapshots`
141
+
142
+ ### Billing
143
+
144
+ - `check_subscription`
145
+ - `get_credits_balance`
146
+ - `create_checkout`
147
+ - `get_customer_portal`
148
+ - `check_extension_usage`
149
+
150
+ ### Pitch pack
151
+
152
+ - `get_pitch_config`
153
+ - `update_pitch_config`
154
+ - `list_pitch_deliverables`
155
+ - `get_pitch_views`
156
+ - `generate_pitch_share_token`
157
+ - `get_public_showcase`
158
+
159
+ ### Social and integrations
160
+
161
+ - `list_integrations`
162
+ - `list_creator_platforms`
163
+ - `sync_instagram`
164
+ - `sync_twitch`
165
+ - `sync_notion`
166
+ - `verify_creator_oauth`
167
+ - `list_instagram_media`
168
+
169
+ ### Support
170
+
171
+ - `list_tickets`
172
+ - `get_ticket`
173
+ - `create_ticket`
174
+ - `reply_to_ticket`
175
+ - `list_conversations`
176
+ - `get_conversation_messages`
177
+
178
+ ### Admin
179
+
180
+ - `admin_get_overview`
181
+ - `admin_stealth_clean`
182
+ - `admin_virus_scan`
183
+
184
+ ## Resources
185
+
186
+ - `creator-profile`
187
+ - `pipeline-status`
188
+ - `deals-overview`
189
+ - `analytics-dashboard`
190
+ - `subscription-status`
191
+
192
+ ## Prompts
193
+
194
+ - `content-strategy`
195
+ - `deal-negotiation`
196
+ - `analytics-review`
197
+ - `video-idea-brainstorm`
198
+
199
+ ## Typical use cases
200
+
201
+ - Plan upcoming YouTube videos from your current pipeline
202
+ - Review deal status and sponsorship revenue
203
+ - Generate thumbnails and video ideas
204
+ - Inspect recent analytics snapshots and identify trends
205
+ - Sync Instagram, Twitch, or Notion integrations
206
+ - Review billing, credits, and pitch pack performance
207
+ - Create and manage support tickets without leaving the MCP client
208
+
209
+ ## Security model
210
+
211
+ - End users only need `CREATOR_OS_TOKEN`
212
+ - MCP API tokens are exchanged server-side for a short-lived Supabase session
213
+ - The package supports Supabase JWTs for backward compatibility
214
+ - Creator OS is delivered as a hosted cloud product
215
+
216
+ ## Local development
217
+
218
+ ```bash
219
+ cd mcp
220
+ npm install
221
+ npm run dev
222
+ ```
223
+
224
+ Build and typecheck:
225
+
226
+ ```bash
227
+ npm run build
228
+ npm run typecheck
229
+ ```
230
+
231
+ Run the built server:
232
+
233
+ ```bash
234
+ npm run start
235
+ ```
236
+
237
+ ## Notes
238
+
239
+ - Some tools depend on connected platform integrations in Creator OS
240
+ - Admin tools require an admin-capable token
241
+ - YouTube analytics tools require the relevant YouTube integration to be connected
242
+
243
+ ## License
244
+
245
+ MIT
package/dist/index.js CHANGED
@@ -23,7 +23,7 @@ import { registerResources } from "./resources.js";
23
23
  import { registerPrompts } from "./prompts.js";
24
24
  const server = new McpServer({
25
25
  name: "creator-os-mcp",
26
- version: "1.0.0",
26
+ version: "1.0.3",
27
27
  }, {
28
28
  instructions: [
29
29
  "Creator OS MCP Server — a comprehensive toolkit for YouTube creators.",
@@ -39,9 +39,9 @@ const server = new McpServer({
39
39
  "",
40
40
  "Environment variables needed:",
41
41
  " CREATOR_OS_TOKEN — MCP API token or Supabase JWT (required)",
42
- "Optional overrides for self-hosted/dev environments:",
43
- " CREATOR_OS_SUPABASE_URL — Override the default Supabase project URL",
44
- " CREATOR_OS_SUPABASE_PUBLISHABLE_KEY Override the default Supabase publishable key",
42
+ "",
43
+ "Creator OS is a hosted cloud product.",
44
+ "Use an MCP token generated in Creator OS for normal customer setup.",
45
45
  ].join("\n"),
46
46
  capabilities: {
47
47
  logging: {},
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAEA;;;;;;;;GAQG;AAEH,OAAO,EAAE,SAAS,EAAE,MAAM,yCAAyC,CAAC;AACpE,OAAO,EAAE,oBAAoB,EAAE,MAAM,2CAA2C,CAAC;AAEjF,OAAO,EAAE,qBAAqB,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAE,iBAAiB,EAAE,MAAM,kBAAkB,CAAC;AACrD,OAAO,EAAE,eAAe,EAAE,MAAM,eAAe,CAAC;AAChD,OAAO,EAAE,sBAAsB,EAAE,MAAM,sBAAsB,CAAC;AAC9D,OAAO,EAAE,mBAAmB,EAAE,MAAM,mBAAmB,CAAC;AACxD,OAAO,EAAE,oBAAoB,EAAE,MAAM,oBAAoB,CAAC;AAC1D,OAAO,EAAE,kBAAkB,EAAE,MAAM,kBAAkB,CAAC;AACtD,OAAO,EAAE,oBAAoB,EAAE,MAAM,oBAAoB,CAAC;AAC1D,OAAO,EAAE,kBAAkB,EAAE,MAAM,kBAAkB,CAAC;AACtD,OAAO,EAAE,iBAAiB,EAAE,MAAM,gBAAgB,CAAC;AACnD,OAAO,EAAE,eAAe,EAAE,MAAM,cAAc,CAAC;AAE/C,MAAM,MAAM,GAAG,IAAI,SAAS,CAC1B;IACE,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;CACjB,EACD;IACE,YAAY,EAAE;QACZ,uEAAuE;QACvE,sEAAsE;QACtE,yEAAyE;QACzE,6EAA6E;QAC7E,uBAAuB;QACvB,EAAE;QACF,iEAAiE;QACjE,2BAA2B;QAC3B,qFAAqF;QACrF,sEAAsE;QACtE,EAAE;QACF,+BAA+B;QAC/B,kFAAkF;QAClF,sDAAsD;QACtD,kFAAkF;QAClF,uFAAuF;KACxF,CAAC,IAAI,CAAC,IAAI,CAAC;IACZ,YAAY,EAAE;QACZ,OAAO,EAAE,EAAE;KACZ;CACF,CACF,CAAC;AAEF,sEAAsE;AACtE,qBAAqB,CAAC,MAAM,CAAC,CAAC;AAC9B,iBAAiB,CAAC,MAAM,CAAC,CAAC;AAC1B,eAAe,CAAC,MAAM,CAAC,CAAC;AACxB,sBAAsB,CAAC,MAAM,CAAC,CAAC;AAC/B,mBAAmB,CAAC,MAAM,CAAC,CAAC;AAC5B,oBAAoB,CAAC,MAAM,CAAC,CAAC;AAC7B,kBAAkB,CAAC,MAAM,CAAC,CAAC;AAC3B,oBAAoB,CAAC,MAAM,CAAC,CAAC;AAC7B,kBAAkB,CAAC,MAAM,CAAC,CAAC;AAC3B,iBAAiB,CAAC,MAAM,CAAC,CAAC;AAC1B,eAAe,CAAC,MAAM,CAAC,CAAC;AAExB,sEAAsE;AACtE,MAAM,SAAS,GAAG,IAAI,oBAAoB,EAAE,CAAC;AAC7C,MAAM,MAAM,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC;AAEhC,sEAAsE;AACtE,MAAM,QAAQ,GAAG,KAAK,IAAI,EAAE;IAC1B,MAAM,MAAM,CAAC,KAAK,EAAE,CAAC;IACrB,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AAClB,CAAC,CAAC;AAEF,OAAO,CAAC,EAAE,CAAC,QAAQ,EAAE,QAAQ,CAAC,CAAC;AAC/B,OAAO,CAAC,EAAE,CAAC,SAAS,EAAE,QAAQ,CAAC,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAEA;;;;;;;;GAQG;AAEH,OAAO,EAAE,SAAS,EAAE,MAAM,yCAAyC,CAAC;AACpE,OAAO,EAAE,oBAAoB,EAAE,MAAM,2CAA2C,CAAC;AAEjF,OAAO,EAAE,qBAAqB,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAE,iBAAiB,EAAE,MAAM,kBAAkB,CAAC;AACrD,OAAO,EAAE,eAAe,EAAE,MAAM,eAAe,CAAC;AAChD,OAAO,EAAE,sBAAsB,EAAE,MAAM,sBAAsB,CAAC;AAC9D,OAAO,EAAE,mBAAmB,EAAE,MAAM,mBAAmB,CAAC;AACxD,OAAO,EAAE,oBAAoB,EAAE,MAAM,oBAAoB,CAAC;AAC1D,OAAO,EAAE,kBAAkB,EAAE,MAAM,kBAAkB,CAAC;AACtD,OAAO,EAAE,oBAAoB,EAAE,MAAM,oBAAoB,CAAC;AAC1D,OAAO,EAAE,kBAAkB,EAAE,MAAM,kBAAkB,CAAC;AACtD,OAAO,EAAE,iBAAiB,EAAE,MAAM,gBAAgB,CAAC;AACnD,OAAO,EAAE,eAAe,EAAE,MAAM,cAAc,CAAC;AAE/C,MAAM,MAAM,GAAG,IAAI,SAAS,CAC1B;IACE,IAAI,EAAE,gBAAgB;IACtB,OAAO,EAAE,OAAO;CACjB,EACD;IACE,YAAY,EAAE;QACZ,uEAAuE;QACvE,sEAAsE;QACtE,yEAAyE;QACzE,6EAA6E;QAC7E,uBAAuB;QACvB,EAAE;QACF,iEAAiE;QACjE,2BAA2B;QAC3B,qFAAqF;QACrF,sEAAsE;QACtE,EAAE;QACF,+BAA+B;QAC/B,kFAAkF;QAClF,EAAE;QACF,uCAAuC;QACvC,qEAAqE;KACtE,CAAC,IAAI,CAAC,IAAI,CAAC;IACZ,YAAY,EAAE;QACZ,OAAO,EAAE,EAAE;KACZ;CACF,CACF,CAAC;AAEF,sEAAsE;AACtE,qBAAqB,CAAC,MAAM,CAAC,CAAC;AAC9B,iBAAiB,CAAC,MAAM,CAAC,CAAC;AAC1B,eAAe,CAAC,MAAM,CAAC,CAAC;AACxB,sBAAsB,CAAC,MAAM,CAAC,CAAC;AAC/B,mBAAmB,CAAC,MAAM,CAAC,CAAC;AAC5B,oBAAoB,CAAC,MAAM,CAAC,CAAC;AAC7B,kBAAkB,CAAC,MAAM,CAAC,CAAC;AAC3B,oBAAoB,CAAC,MAAM,CAAC,CAAC;AAC7B,kBAAkB,CAAC,MAAM,CAAC,CAAC;AAC3B,iBAAiB,CAAC,MAAM,CAAC,CAAC;AAC1B,eAAe,CAAC,MAAM,CAAC,CAAC;AAExB,sEAAsE;AACtE,MAAM,SAAS,GAAG,IAAI,oBAAoB,EAAE,CAAC;AAC7C,MAAM,MAAM,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC;AAEhC,sEAAsE;AACtE,MAAM,QAAQ,GAAG,KAAK,IAAI,EAAE;IAC1B,MAAM,MAAM,CAAC,KAAK,EAAE,CAAC;IACrB,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AAClB,CAAC,CAAC;AAEF,OAAO,CAAC,EAAE,CAAC,QAAQ,EAAE,QAAQ,CAAC,CAAC;AAC/B,OAAO,CAAC,EAAE,CAAC,SAAS,EAAE,QAAQ,CAAC,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "creator-mcp",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "MCP server for Creator OS — access your pipeline, deals, analytics, AI tools, and more via any MCP-compatible client",
5
5
  "type": "module",
6
6
  "license": "MIT",