creator-mcp 1.0.1 → 1.0.2

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,255 @@
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
+ ### Internal development only
102
+
103
+ This package is intended to connect to the hosted Creator OS product. The environment variables below are internal/development overrides and are not part of the normal customer setup:
104
+
105
+ ```bash
106
+ CREATOR_OS_SUPABASE_URL=https://your-project.supabase.co
107
+ CREATOR_OS_SUPABASE_PUBLISHABLE_KEY=your_publishable_key
108
+ ```
109
+
110
+ ## Tool catalog
111
+
112
+ ### Pipeline and content
113
+
114
+ - `list_pipeline_videos`
115
+ - `get_pipeline_video`
116
+ - `update_pipeline_video`
117
+ - `capture_to_pipeline`
118
+ - `list_saved_ideas`
119
+ - `save_idea`
120
+ - `generate_video_idea`
121
+ - `generate_thumbnail`
122
+ - `send_thumbnail_reference`
123
+
124
+ ### Deals and sponsorships
125
+
126
+ - `list_deals`
127
+ - `get_deal`
128
+ - `create_deal`
129
+ - `update_deal`
130
+ - `export_deals_to_sheets`
131
+ - `generate_coupon_message`
132
+ - `list_coupons`
133
+ - `send_coupon`
134
+ - `submit_brand_proposal`
135
+
136
+ ### AI
137
+
138
+ - `get_ai_suggestions`
139
+ - `ai_chat`
140
+ - `save_ai_key`
141
+ - `test_ai_key`
142
+ - `delete_ai_key`
143
+
144
+ ### Analytics
145
+
146
+ - `get_youtube_analytics`
147
+ - `fetch_youtube_data`
148
+ - `fetch_youtube_channel`
149
+ - `get_video_analytics_snapshots`
150
+
151
+ ### Billing
152
+
153
+ - `check_subscription`
154
+ - `get_credits_balance`
155
+ - `create_checkout`
156
+ - `get_customer_portal`
157
+ - `check_extension_usage`
158
+
159
+ ### Pitch pack
160
+
161
+ - `get_pitch_config`
162
+ - `update_pitch_config`
163
+ - `list_pitch_deliverables`
164
+ - `get_pitch_views`
165
+ - `generate_pitch_share_token`
166
+ - `get_public_showcase`
167
+
168
+ ### Social and integrations
169
+
170
+ - `list_integrations`
171
+ - `list_creator_platforms`
172
+ - `sync_instagram`
173
+ - `sync_twitch`
174
+ - `sync_notion`
175
+ - `verify_creator_oauth`
176
+ - `list_instagram_media`
177
+
178
+ ### Support
179
+
180
+ - `list_tickets`
181
+ - `get_ticket`
182
+ - `create_ticket`
183
+ - `reply_to_ticket`
184
+ - `list_conversations`
185
+ - `get_conversation_messages`
186
+
187
+ ### Admin
188
+
189
+ - `admin_get_overview`
190
+ - `admin_stealth_clean`
191
+ - `admin_virus_scan`
192
+
193
+ ## Resources
194
+
195
+ - `creator-profile`
196
+ - `pipeline-status`
197
+ - `deals-overview`
198
+ - `analytics-dashboard`
199
+ - `subscription-status`
200
+
201
+ ## Prompts
202
+
203
+ - `content-strategy`
204
+ - `deal-negotiation`
205
+ - `analytics-review`
206
+ - `video-idea-brainstorm`
207
+
208
+ ## Typical use cases
209
+
210
+ - Plan upcoming YouTube videos from your current pipeline
211
+ - Review deal status and sponsorship revenue
212
+ - Generate thumbnails and video ideas
213
+ - Inspect recent analytics snapshots and identify trends
214
+ - Sync Instagram, Twitch, or Notion integrations
215
+ - Review billing, credits, and pitch pack performance
216
+ - Create and manage support tickets without leaving the MCP client
217
+
218
+ ## Security model
219
+
220
+ - End users only need `CREATOR_OS_TOKEN`
221
+ - MCP API tokens are exchanged server-side for a short-lived Supabase session
222
+ - The package supports Supabase JWTs for backward compatibility
223
+ - Creator OS is delivered as a hosted cloud product
224
+ - Internal override variables exist for development only and should not be part of customer-facing setup
225
+
226
+ ## Local development
227
+
228
+ ```bash
229
+ cd mcp
230
+ npm install
231
+ npm run dev
232
+ ```
233
+
234
+ Build and typecheck:
235
+
236
+ ```bash
237
+ npm run build
238
+ npm run typecheck
239
+ ```
240
+
241
+ Run the built server:
242
+
243
+ ```bash
244
+ npm run start
245
+ ```
246
+
247
+ ## Notes
248
+
249
+ - Some tools depend on connected platform integrations in Creator OS
250
+ - Admin tools require an admin-capable token
251
+ - YouTube analytics tools require the relevant YouTube integration to be connected
252
+
253
+ ## License
254
+
255
+ 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.2",
27
27
  }, {
28
28
  instructions: [
29
29
  "Creator OS MCP Server — a comprehensive toolkit for YouTube creators.",
@@ -39,9 +39,10 @@ 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
+ "Supabase override variables are internal development hooks and are not required by end users.",
45
46
  ].join("\n"),
46
47
  capabilities: {
47
48
  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;QACrE,+FAA+F;KAChG,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.2",
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",