0nmcp 2.9.1 → 2.9.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/catalog.js +981 -0
- package/crm/social.js +9 -2
- package/lib/capabilities.js +700 -0
- package/lib/sequences.js +353 -0
- package/lib/stats.json +1 -1
- package/package.json +23 -100
- package/workflow.js +16 -5
package/crm/social.js
CHANGED
|
@@ -4,6 +4,13 @@
|
|
|
4
4
|
// Full coverage of Social Media Posting endpoints (posts, accounts,
|
|
5
5
|
// categories, tags, CSV import/export, OAuth, reviews) and Blog
|
|
6
6
|
// endpoints (blogs, authors, categories, posts, slug checks).
|
|
7
|
+
//
|
|
8
|
+
// REDDIT NOTE: Reddit is NOT available as a CRM-native social
|
|
9
|
+
// provider. For Reddit posting, comments, monitoring, and search,
|
|
10
|
+
// use the dedicated reddit_* tools (registered via reddit.js).
|
|
11
|
+
// CRM social + Reddit can be combined in workflows — e.g. use
|
|
12
|
+
// crm_create_social_post for Twitter/FB/IG/LinkedIn, then
|
|
13
|
+
// reddit_submit_post for Reddit cross-posting.
|
|
7
14
|
// ============================================================
|
|
8
15
|
|
|
9
16
|
export default [
|
|
@@ -112,7 +119,7 @@ export default [
|
|
|
112
119
|
|
|
113
120
|
{
|
|
114
121
|
name: "crm_create_social_post",
|
|
115
|
-
description: "Create a new social media post. Can be published immediately or scheduled.",
|
|
122
|
+
description: "Create a new social media post. Can be published immediately or scheduled. Supports Facebook, Instagram, Twitter/X, LinkedIn, Google Business, and TikTok. NOTE: For Reddit posts, use the reddit_submit_post tool instead — Reddit is not a CRM-native social provider.",
|
|
116
123
|
method: "POST",
|
|
117
124
|
path: "/social-media-posting/",
|
|
118
125
|
params: {
|
|
@@ -624,7 +631,7 @@ export default [
|
|
|
624
631
|
|
|
625
632
|
{
|
|
626
633
|
name: "crm_start_social_oauth",
|
|
627
|
-
description: "Start an OAuth flow to connect a social media provider account.",
|
|
634
|
+
description: "Start an OAuth flow to connect a CRM-native social media provider account (Facebook, Instagram, Google, Twitter/X, LinkedIn, TikTok). NOTE: Reddit OAuth is handled separately via the 0nMCP reddit connection — see connect_service with service='reddit'.",
|
|
628
635
|
method: "GET",
|
|
629
636
|
path: "/social-media-posting/oauth/:provider/start",
|
|
630
637
|
params: {
|