@socialneuron/mcp-server 1.7.12 → 1.7.14
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 +6 -6
- package/dist/http.js +1841 -674
- package/dist/index.js +1537 -669
- package/dist/sn.js +4201 -0
- package/package.json +44 -20
- package/tools.lock.json +119 -0
package/package.json
CHANGED
|
@@ -1,14 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@socialneuron/mcp-server",
|
|
3
|
-
"version": "1.7.
|
|
4
|
-
"description": "MCP server for Social Neuron
|
|
3
|
+
"version": "1.7.14",
|
|
4
|
+
"description": "Official MCP server, REST API & CLI for Social Neuron \u2014 create, schedule, and optimize social content with 35+ AI models across YouTube, TikTok, and more.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"bin": {
|
|
8
|
-
"socialneuron-mcp": "dist/index.js"
|
|
8
|
+
"socialneuron-mcp": "dist/index.js",
|
|
9
|
+
"sn": "dist/sn.js"
|
|
9
10
|
},
|
|
10
11
|
"files": [
|
|
11
12
|
"dist/",
|
|
13
|
+
"tools.lock.json",
|
|
12
14
|
"README.md",
|
|
13
15
|
"CHANGELOG.md",
|
|
14
16
|
"LICENSE"
|
|
@@ -45,16 +47,29 @@
|
|
|
45
47
|
"youtube",
|
|
46
48
|
"tiktok",
|
|
47
49
|
"instagram",
|
|
48
|
-
"linkedin"
|
|
50
|
+
"linkedin",
|
|
51
|
+
"claude",
|
|
52
|
+
"anthropic",
|
|
53
|
+
"content-marketing",
|
|
54
|
+
"llm-tools",
|
|
55
|
+
"agent-tools"
|
|
49
56
|
],
|
|
50
57
|
"publishConfig": {
|
|
51
|
-
"access": "public"
|
|
58
|
+
"access": "public",
|
|
59
|
+
"provenance": true
|
|
52
60
|
},
|
|
53
61
|
"scripts": {
|
|
62
|
+
"lint:lockfile": "node scripts/lint-lockfile.mjs package-lock.json",
|
|
63
|
+
"check:dep-age": "node scripts/check-dep-age.mjs",
|
|
54
64
|
"build": "esbuild src/http.ts --bundle --platform=node --target=es2022 --format=esm --outfile=dist/http.js --packages=external",
|
|
55
65
|
"build:stdio": "esbuild src/index.ts --bundle --platform=node --target=es2022 --format=esm --outfile=dist/index.js --banner:js='#!/usr/bin/env node' --packages=external && chmod +x dist/index.js",
|
|
56
|
-
"
|
|
57
|
-
"build:
|
|
66
|
+
"prebuild:sn": "node scripts/write-version.mjs",
|
|
67
|
+
"build:sn": "esbuild src/sn.ts --bundle --platform=node --target=es2022 --format=esm --outfile=dist/sn.js --banner:js='#!/usr/bin/env node' --packages=external && chmod +x dist/sn.js",
|
|
68
|
+
"build:lock": "node scripts/build-tools-lock.mjs",
|
|
69
|
+
"build:app": "cd apps/content-calendar && (test -d node_modules || npm install --ignore-scripts --no-audit --no-fund) && npm run build",
|
|
70
|
+
"build:all": "npm run build:stdio && npm run build && npm run build:sn && npm run build:lock && npm run build:app",
|
|
71
|
+
"verify:lock": "node scripts/verify-tools-lock.mjs",
|
|
72
|
+
"lint:tools": "node scripts/lint-tool-descriptions.mjs",
|
|
58
73
|
"start": "node dist/http.js",
|
|
59
74
|
"start:stdio": "node dist/index.js",
|
|
60
75
|
"typecheck": "NODE_OPTIONS='--max-old-space-size=8192' tsc --noEmit",
|
|
@@ -62,25 +77,40 @@
|
|
|
62
77
|
"test": "vitest run",
|
|
63
78
|
"test:watch": "vitest",
|
|
64
79
|
"clean": "rm -rf dist/",
|
|
65
|
-
"prepublishOnly": "npm run clean && npm run build:all && npm test"
|
|
80
|
+
"prepublishOnly": "npm run clean && npm run build:all && npm test",
|
|
81
|
+
"build:docs": "node scripts/build-tools-reference.mjs"
|
|
66
82
|
},
|
|
67
83
|
"dependencies": {
|
|
68
|
-
"@modelcontextprotocol/ext-apps": "1.7.
|
|
84
|
+
"@modelcontextprotocol/ext-apps": "1.7.4",
|
|
69
85
|
"@modelcontextprotocol/sdk": "^1.27.1",
|
|
70
|
-
"@supabase/supabase-js": "2.
|
|
86
|
+
"@supabase/supabase-js": "2.108.2",
|
|
71
87
|
"cors": "^2.8.6",
|
|
72
88
|
"express": "^5.1.0",
|
|
73
89
|
"express-rate-limit": "^8.3.2",
|
|
74
90
|
"jose": "^6.2.1",
|
|
75
91
|
"open": "10.0.0",
|
|
76
|
-
"posthog-node": "
|
|
92
|
+
"posthog-node": "5.38.2",
|
|
77
93
|
"zod": "^4.3.6"
|
|
78
94
|
},
|
|
79
95
|
"devDependencies": {
|
|
80
|
-
"@types/
|
|
81
|
-
"
|
|
96
|
+
"@types/express": "5.0.6",
|
|
97
|
+
"@types/node": "26.0.0",
|
|
98
|
+
"esbuild": "^0.28.1",
|
|
82
99
|
"typescript": "^5.9.3",
|
|
83
|
-
"vitest": "^3.
|
|
100
|
+
"vitest": "^3.2.6",
|
|
101
|
+
"playwright": "1.61.0",
|
|
102
|
+
"@remotion/bundler": "4.0.481",
|
|
103
|
+
"@remotion/renderer": "4.0.481"
|
|
104
|
+
},
|
|
105
|
+
"overrides": {
|
|
106
|
+
"vite": "7.3.5",
|
|
107
|
+
"esbuild": "$esbuild",
|
|
108
|
+
"@hono/node-server": "1.19.13",
|
|
109
|
+
"hono": "4.12.27",
|
|
110
|
+
"path-to-regexp": "8.4.2"
|
|
111
|
+
},
|
|
112
|
+
"engines": {
|
|
113
|
+
"node": ">=20.0.0 <21.0.0 || >=22.0.0"
|
|
84
114
|
},
|
|
85
115
|
"peerDependencies": {
|
|
86
116
|
"playwright": "^1.59.1"
|
|
@@ -89,11 +119,5 @@
|
|
|
89
119
|
"playwright": {
|
|
90
120
|
"optional": true
|
|
91
121
|
}
|
|
92
|
-
},
|
|
93
|
-
"engines": {
|
|
94
|
-
"node": ">=20.0.0 <21.0.0 || >=22.0.0"
|
|
95
|
-
},
|
|
96
|
-
"overrides": {
|
|
97
|
-
"hono": "^4.12.18"
|
|
98
122
|
}
|
|
99
123
|
}
|
package/tools.lock.json
ADDED
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 2,
|
|
3
|
+
"source": "runtime tools/list + search_tools catalog",
|
|
4
|
+
"hash_algorithm": "sha256",
|
|
5
|
+
"hashed_fields": [
|
|
6
|
+
"name",
|
|
7
|
+
"runtime.title",
|
|
8
|
+
"runtime.description",
|
|
9
|
+
"runtime.scope",
|
|
10
|
+
"runtime.input_schema",
|
|
11
|
+
"runtime.output_schema",
|
|
12
|
+
"runtime.annotations",
|
|
13
|
+
"runtime._meta",
|
|
14
|
+
"catalog.description",
|
|
15
|
+
"catalog.module",
|
|
16
|
+
"catalog.scope"
|
|
17
|
+
],
|
|
18
|
+
"tool_count": 96,
|
|
19
|
+
"runtime_tool_count": 95,
|
|
20
|
+
"catalog_tool_count": 96,
|
|
21
|
+
"tools": {
|
|
22
|
+
"adapt_content": "4bb34212ae14f3f9d81e6f3c3305f9046ac3ada74745ab4001dafd47bd825f7b",
|
|
23
|
+
"audit_brand_colors": "2d4d6b0b297c6a17ac7cac2953e83f5175c5a7284f3d71ba8d115a43fc0b2607",
|
|
24
|
+
"auto_approve_plan": "a69c66eb4e7db68e4a28d648c9e239949a31d383e4153543201f66e7c0dae1c6",
|
|
25
|
+
"capture_app_page": "0ca50e170d25c1544e8e7dc47071766b15b86d25e6865895506eb182a2e15c43",
|
|
26
|
+
"capture_screenshot": "7031572b38cb0119a7ca64e02f1ed440a6039e41d471f64b9981b9a2c3955fd6",
|
|
27
|
+
"check_brand_consistency": "1e80ce9056f157b937bec21569d5e1d612bc353592ff252e7af5627f4b3282ac",
|
|
28
|
+
"check_pipeline_readiness": "185952cdb952641070bfd1e43ba195adcafbaf6f02365706fc96b706096447e6",
|
|
29
|
+
"check_status": "0c011801374b204eb20e2e4bd399b442067d087df31a2bb68940474c9699835a",
|
|
30
|
+
"create_autopilot_config": "3ea4053cd737e309c2a5a6426604d98a1c2d07965fb1a5080427ee7a152aa662",
|
|
31
|
+
"create_carousel": "283c3a5c4c19199a30fcc635586ea998f22854aa79476dba6b1bd49294d7f1b3",
|
|
32
|
+
"create_plan_approvals": "991118ea3de1df1b310006e1198aba7f18cddb5b220f4af8fab7dd4b0f71b4d9",
|
|
33
|
+
"create_storyboard": "89df9522686079a228785259ccfada4e74d07e51248679653fdd9508e5be1a26",
|
|
34
|
+
"delete_comment": "4ccba2a7dc337350a9867d9c95d56bcf6c70a2631ef86d0fb11b9dec4b424045",
|
|
35
|
+
"detect_anomalies": "b7d25cccfe416b6a8d1b66dd3cbe39dc02d24ab7882ff7dca4a045fab3ce566f",
|
|
36
|
+
"execute_recipe": "6c39ed1893bba7ae70dbcc7ccecbf282a973cafa230738f50cf6cd1cfbf2f2e0",
|
|
37
|
+
"explain_brand_system": "fcb881cae0733f0936ef168131b4adde0735526bcfe2d9a569897d4238d8fdfc",
|
|
38
|
+
"export_design_tokens": "a134b56272c09cb320af30e641607eb868b3800208d1c2d13f1d12f3fa581f90",
|
|
39
|
+
"extract_brand": "5c75c62f4c5b65ab1f23e8c7f897f23aaf54efc3df2a5487d62bd0018da28541",
|
|
40
|
+
"extract_url_content": "f9590296a6209b9c445e0487fc12c7bf9f10eeba25dbe1fb8ccd578b405a03c3",
|
|
41
|
+
"fetch": "22f077d7298f21c2eaae9e1f5c280d8f44da01a44a3bfd33f273f381132382e0",
|
|
42
|
+
"fetch_analytics": "511a363a6f46bb9145177aa90dc72c44988e81be92db2370d247c5d2421ed333",
|
|
43
|
+
"fetch_trends": "9efd2a24c9f9d9a3a6fa707f2355c8ef0d12dbc25f416e9237c0b9b73d15007b",
|
|
44
|
+
"fetch_youtube_analytics": "c1d6cf67a5d0ad1696b4320ee91de7ddf58af6cf4a3be537636be746a4822af7",
|
|
45
|
+
"find_next_slots": "fccf3bc7a8ac54b7ee243c59272252dbfeb307ca8d2987b1527b3b904408c909",
|
|
46
|
+
"find_winning_content": "d5112618e5c386ff7cde1a18ec694284365888794b8b0d44154b4e2e527f4ff3",
|
|
47
|
+
"generate_carousel": "e6420e3ccc766f5f0fa2e783ecada527dc4ca23b2bb34954963c912eacba84a9",
|
|
48
|
+
"generate_content": "1425c9bc1a8ce800448344a5dea61dd1359eb30872a563b7014d461a696fc6bb",
|
|
49
|
+
"generate_image": "0aa3f14e2b4475ec5909f3b5cc141556b3315989af886a817d9fa7efa1be40e0",
|
|
50
|
+
"generate_performance_digest": "8bbb53edc46698927a10372444239ba9973c5c84e2d0a8160f74192495dae74b",
|
|
51
|
+
"generate_video": "371eda383af033b4f99a1f4447e8a555d16d10688995f6fd55b9c6eb0a619313",
|
|
52
|
+
"generate_voiceover": "ced5ecaf3d936bb7ba0f17d2efe3c15594a061226fbcec1fb572ec87555eff20",
|
|
53
|
+
"get_active_campaigns": "3a28a6eb17131d48df8ec6938fba7af807a9c4148cb570dc4a82ae891730c631",
|
|
54
|
+
"get_autopilot_status": "c6e689867a32a491a7afbbae46326d223bba412f0c66113ddf4be831c73fd769",
|
|
55
|
+
"get_bandit_state": "bcb21aa0c2ca055fd7093d05c1d78a23691627920de9dc1dd7087472c57b8a34",
|
|
56
|
+
"get_best_posting_times": "78932988a8a2238d81c7b2c065e95349fda3e226702998fb08262b74baff6a53",
|
|
57
|
+
"get_brand_profile": "a0ebd63ebd7032de497751d2b35c0ec78c847869d64e54f7019baa5e532fed0e",
|
|
58
|
+
"get_brand_runtime": "5ac3149d38eac100aca5d769ddb0f5d900832fb29eef78c18dc97678902e3a41",
|
|
59
|
+
"get_budget_status": "ca79cc516af7ca950b0435949bd801b1e7dd4403eeb4e6152f3bde011ed4b834",
|
|
60
|
+
"get_content_plan": "24a3845da81533d8c22affd76ce28dc179d79f2556c50317eafafbff6b1c520a",
|
|
61
|
+
"get_credit_balance": "e5a086ab75278640ec589893a7575aa561fe0cbc30bbbd67a328fb4032d3164d",
|
|
62
|
+
"get_ideation_context": "fa07379c69b5045de910d8f70445b4bab0bded9f04a1cb41b157cab5a5385f9d",
|
|
63
|
+
"get_loop_pulse": "58fdca648d6da7b92f36ae08f94791697d5aebdd8e8084788833b04b7307143c",
|
|
64
|
+
"get_loop_summary": "e37bbc18048c039876dd4f4ba640dbb5e1efaf968fb887cb5479683e2840c1cc",
|
|
65
|
+
"get_mcp_usage": "3e75743113a8e232c831f915edec38143528e92c504219ac3921d524f738df10",
|
|
66
|
+
"get_media_url": "2132e420dc3df1a3c6b8d421b3530be23a7282b8f03af53d26707b337de73370",
|
|
67
|
+
"get_performance_insights": "88c6d44adddda1d8263bffdf6f924482f58b201ec4595afab9c7285bccd0379e",
|
|
68
|
+
"get_pipeline_status": "16ece649a0516d777ea75654b336ff1cffcfec5eb903960dc8f6d3499d823a0e",
|
|
69
|
+
"get_recipe_details": "3d74e13a6b2814a414e89a4c75e6657c84aab611dce937ab117fd52e4f2b2eae",
|
|
70
|
+
"get_recipe_run_status": "70e18a604307fc01f4fc87744c9caaf3d63abcd3ed7ce04af407954ecac2cbdc",
|
|
71
|
+
"list_autopilot_configs": "bc90bc8426e53b0387e73569bfe396d1d63ea83335fb895b3fc69d6329e46772",
|
|
72
|
+
"list_comments": "66ced566b5945f004a179c0e8530ef9fadef815806e59db9f8d6696d61558eb2",
|
|
73
|
+
"list_compositions": "133833965c0ff7ba79204eb86202e68162a8b5be0898e6a4363258e5ffcae3ac",
|
|
74
|
+
"list_connected_accounts": "e1ba41ba4623cacdeea290f447766f089e8797c19cf567e85405b011472e4990",
|
|
75
|
+
"list_hyperframes_blocks": "f5f17e950af775aeda8e3bf2b87b1a17879ed598523873575ac1c101ded12c07",
|
|
76
|
+
"list_plan_approvals": "2f0f93686995d0495aac9d15fa2b2e2f461728db0333f8bc035263c8b37d6429",
|
|
77
|
+
"list_recent_posts": "106e7686ff0e69582b1988c97a4911cee7a6827eda3dd8a8c548adc445fa7f48",
|
|
78
|
+
"list_recipes": "415b2e81020320b4c607cbd15d6532f8bd5f8274450375c6f5479fd0bd580c3c",
|
|
79
|
+
"list_skills": "0b7d4f59d7e3d6c782cb0e326118dde4238142072df56eca7d22c014bb5681ae",
|
|
80
|
+
"moderate_comment": "7226ee0985322e3cbc56026149d242d800fb75287dbc33ac65e8096341123685",
|
|
81
|
+
"open_content_calendar": "4368d98f05ce7a0bcd9614e9a2ce0f874d9d3bdd7fbf1f4905d81e7019649610",
|
|
82
|
+
"plan_content_week": "25a9d0dbb4e0ab5ee4bdc0d5729856aeb7ebdea7c8710eca96e81f3bb60cf8fc",
|
|
83
|
+
"post_comment": "82a08ca55145352783f2509586519948f01f30b9098b5c00f4175d0d0408b29e",
|
|
84
|
+
"quality_check": "a627658f804100276c6335cda8c2359edea163c155fa48aba6adb8749a80416a",
|
|
85
|
+
"quality_check_plan": "9ce43929418427b4b256afc621283c7e887b97e208da849f4ae02418c2103954",
|
|
86
|
+
"read_agent_reflection": "bdf834b25577eb7d8b992b7e7b2462949b2ffd6da664a38eba8b53d1ec8fa5a6",
|
|
87
|
+
"record_campaign_spend": "7cade3b29ccfb9bdc1634ec8199eea14abd79594da1bb1ad59f6f481db7ca2e6",
|
|
88
|
+
"record_intel_signal": "9f3db98ec4343e53b488367273383e15f1d89ef27a7e96b3b2db1aa3d6175a91",
|
|
89
|
+
"record_observation": "64f26ca189c6b4ebf6c02436fc3392ac12fdc86361ba5a50feb7d8c9dab1a849",
|
|
90
|
+
"record_outcome": "8d5be6f47e9d925bb8f13d6a94041e72c097337f34deecb246e576c7d651e122",
|
|
91
|
+
"record_voice_lesson": "47707d359ccdae2953e63aa8443ea981784c4e3f0a0e986ecc84ea6b564814db",
|
|
92
|
+
"refresh_platform_analytics": "2cb4e3c060aa26c6616c09fd5c8831f324fb232a2cdb17c69413db26ee732503",
|
|
93
|
+
"render_demo_video": "cd7c3e1c0aef1f4c785f3dda46134cf37717911cfccb8c0513cd1768213005f2",
|
|
94
|
+
"render_hyperframes": "517ccab72014c626074c6da94867b0e81cda51b20b6609287dec9b8dd22f8386",
|
|
95
|
+
"render_template_video": "e696bc84a44e797807f247d5ceb85c66e65657edb82d8ed3e23ef82760fadace",
|
|
96
|
+
"reply_to_comment": "25756f7c2a8c2cd133d7b9623b395c76a452be11f1e9e795a7b03111fd2c1858",
|
|
97
|
+
"respond_plan_approval": "60ef3827a8e199b140a1008746947d6753e766505b2dc69291dccddb276216e2",
|
|
98
|
+
"run_content_pipeline": "bea1d7d9fab5248af8cc5668527606b8299fa8f884cea0e8f226f6d32d91f98e",
|
|
99
|
+
"run_skill": "b7e6fd660ba7763be53536ac72af56bbf601ba23c2d2a8a55dcc7b678ba4190e",
|
|
100
|
+
"save_brand_profile": "70c40bbd3f80b0fb7251050cbd75e5dab79e03b7b6cacc4fa702301e6c7cda67",
|
|
101
|
+
"save_content_plan": "e876db2b255acd39bdced9d5ff9ea0f1b6472343cb6833f9b9d402c7edb27e67",
|
|
102
|
+
"save_draft_to_library": "87ed0dcd83f92c76ebd2f080119c92415b7bdffefd404caa32f91be09d3bd9e5",
|
|
103
|
+
"schedule_content_plan": "c61002f034b198e8f405cf9a3a05032d9639ddee75ea6649f08a432fca46542d",
|
|
104
|
+
"schedule_post": "4bd2efdcf9584c579e8adacdfca8d75bdb2c4783013432b047bf3cc521bdd5c1",
|
|
105
|
+
"search": "a985b8fb8cdfc6260bab53bd7aa0c2f02b1f0107c2d3cc4e6c845f7b5f5b0018",
|
|
106
|
+
"search_tools": "02a960a00d893adcd1d367e684caa4aca6e36b90710c6847acd59b36fff035e9",
|
|
107
|
+
"start_platform_connection": "6a9e8ccc5c01bbfa8de673fc81ec766a132a6af1c22b658736a0d9d9976dd8f0",
|
|
108
|
+
"submit_content_plan_for_approval": "2f887ce431a191a0cedc5a88fb3434fd135ab97f063f56a370c71a07666ad204",
|
|
109
|
+
"suggest_next_content": "af7635bfea98c01a4fcf449491e64435b0f6b94048f5a867d52fa996d75f4970",
|
|
110
|
+
"update_autopilot_config": "c1778c4ded57664df6141e93a4d68a2564b1ccd672d98edf2ffb1a772586f8ba",
|
|
111
|
+
"update_content_plan": "2fc0418f8103048f36c7224211ad8af5012716b733d3b5dcb9e455c0fad00ddc",
|
|
112
|
+
"update_platform_voice": "a532a49a1da6ac9dd8fcf02e4e5eb0e7a6f9a33880f5837326ac7ab5ea3554e7",
|
|
113
|
+
"upload_media": "5c455056124e340747c07fa0e4e547248c7d01ce4c5e18c7eccc3d296a97142b",
|
|
114
|
+
"visual_gate_constraints": "77d8c1eeba11d9aa4d3af08609c4c1f1ee365c2d14410efd16a2b9911dd76a8e",
|
|
115
|
+
"visual_quality_check": "63a52d8f38864162b901bdb38cc69032e9f530a8a53f11db617f87b62d70f36c",
|
|
116
|
+
"wait_for_connection": "3f3a587e9a6d3a32e6dd23600665eee1a428721ea352daf6eefafd746bfff8e7",
|
|
117
|
+
"write_agent_reflection": "04384e55b02a2fbefa6d1d6777dbb161cac91f7d6f080a09094ff2d12f9c2538"
|
|
118
|
+
}
|
|
119
|
+
}
|