@chirpie/mcp 1.0.6 → 1.0.7
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/dist/index.js +11 -11
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -33,11 +33,11 @@ var server = new McpServer({
|
|
|
33
33
|
});
|
|
34
34
|
server.tool(
|
|
35
35
|
"chirpie_post",
|
|
36
|
-
"Create a post on X/Twitter, Bluesky, LinkedIn, Threads, Mastodon, Instagram, or
|
|
36
|
+
"Create a post on X/Twitter, Bluesky, LinkedIn, Threads, Mastodon, Instagram, Facebook, Telegram, Reddit, Pinterest, TikTok, YouTube, Google Business Profile, or Snapchat with optional media. Posts immediately or at a scheduled time. Note: Instagram, Pinterest, TikTok, YouTube, and Snapchat REQUIRE media.",
|
|
37
37
|
{
|
|
38
|
-
account_id: z.string().describe("Account ID to post from (X, Bluesky, LinkedIn, Threads, Mastodon, Instagram, or
|
|
39
|
-
text: z.string().max(63206).describe("Post text (max 280 chars for standard X, 25,000 for X Premium, 300 for Bluesky, 3,000 for LinkedIn, 500 for Threads, 500 for Mastodon, 2,200 for Instagram, 63,206 for Facebook)"),
|
|
40
|
-
media_urls: z.array(z.string()).max(10).optional().describe("Public image URLs. X supports images + video (max 4); Bluesky supports images only (~1MB each, max 4); LinkedIn supports images (JPEG, PNG, GIF up to 8MB each, max 4). Threads supports one image per post (URL-based). Mastodon supports images + video (max 4). Instagram REQUIRES at least 1 image (max 10 for carousel). Facebook supports images (max 4)."),
|
|
38
|
+
account_id: z.string().describe("Account ID to post from (X, Bluesky, LinkedIn, Threads, Mastodon, Instagram, Facebook, Telegram, Reddit, Pinterest, TikTok, YouTube, Google Business Profile, or Snapchat)"),
|
|
39
|
+
text: z.string().max(63206).describe("Post text (max 280 chars for standard X, 25,000 for X Premium, 300 for Bluesky, 3,000 for LinkedIn, 500 for Threads, 500 for Mastodon, 2,200 for Instagram, 63,206 for Facebook, 4,096 for Telegram, 40,000 for Reddit, 500 for Pinterest, 2,200 for TikTok, 5,000 for YouTube, 1,500 for Google Business Profile, 160 for Snapchat)"),
|
|
40
|
+
media_urls: z.array(z.string()).max(10).optional().describe("Public image URLs. X supports images + video (max 4); Bluesky supports images only (~1MB each, max 4); LinkedIn supports images (JPEG, PNG, GIF up to 8MB each, max 4). Threads supports one image per post (URL-based). Mastodon supports images + video (max 4). Instagram REQUIRES at least 1 image (max 10 for carousel). Facebook supports images (max 4). Telegram supports images + video. Reddit supports images (max 1). Pinterest REQUIRES 1 image. TikTok REQUIRES video or photo. YouTube REQUIRES video. Google Business Profile supports images (max 1). Snapchat REQUIRES media (image or video)."),
|
|
41
41
|
schedule_at: z.string().optional().describe("ISO 8601 datetime to schedule the post")
|
|
42
42
|
},
|
|
43
43
|
async ({ account_id, text, media_urls, schedule_at }) => {
|
|
@@ -51,12 +51,12 @@ server.tool(
|
|
|
51
51
|
);
|
|
52
52
|
server.tool(
|
|
53
53
|
"chirpie_thread",
|
|
54
|
-
"Create a thread (multiple posts) on X/Twitter, Bluesky, LinkedIn, Threads, Mastodon, Instagram, or
|
|
54
|
+
"Create a thread (multiple posts) on X/Twitter, Bluesky, LinkedIn, Threads, Mastodon, Instagram, Facebook, Telegram, Reddit, Pinterest, TikTok, YouTube, Google Business Profile, or Snapchat. X, Bluesky, Threads, Mastodon, and Telegram support native reply threading. Reddit threads via comments. Others degrade gracefully to standalone posts.",
|
|
55
55
|
{
|
|
56
|
-
account_id: z.string().describe("Account ID to post from (X, Bluesky, LinkedIn, Threads, Mastodon, Instagram,
|
|
56
|
+
account_id: z.string().describe("Account ID to post from (X, Bluesky, LinkedIn, Threads, Mastodon, Instagram, Facebook, Telegram, Reddit, Pinterest, TikTok, YouTube, Google Business Profile, or Snapchat). Some platforms degrade to standalone posts."),
|
|
57
57
|
posts: z.array(z.object({
|
|
58
|
-
text: z.string().max(63206).describe("Post text (max 280 chars for standard X, 25,000 for X Premium, 300 for Bluesky, 3,000 for LinkedIn, 500 for Threads, 500 for Mastodon, 2,200 for Instagram, 63,206 for Facebook)"),
|
|
59
|
-
media_urls: z.array(z.string()).max(10).optional().describe("Public image URLs (Bluesky: images only, ~1MB each, max 4; X: images + video, max 4; LinkedIn: images up to 8MB each, max 4; Threads: one image per post, URL-based; Mastodon: images + video, max 4; Instagram: requires images, max 10; Facebook: images, max 4)")
|
|
58
|
+
text: z.string().max(63206).describe("Post text (max 280 chars for standard X, 25,000 for X Premium, 300 for Bluesky, 3,000 for LinkedIn, 500 for Threads, 500 for Mastodon, 2,200 for Instagram, 63,206 for Facebook, 4,096 for Telegram, 40,000 for Reddit, 500 for Pinterest, 2,200 for TikTok, 5,000 for YouTube, 1,500 for Google Business Profile, 160 for Snapchat)"),
|
|
59
|
+
media_urls: z.array(z.string()).max(10).optional().describe("Public image URLs (Bluesky: images only, ~1MB each, max 4; X: images + video, max 4; LinkedIn: images up to 8MB each, max 4; Threads: one image per post, URL-based; Mastodon: images + video, max 4; Instagram: requires images, max 10; Facebook: images, max 4; Telegram: images + video; Reddit: 1 image; Pinterest: requires 1 image; TikTok: requires video/photo; YouTube: requires video; Google Business Profile: 1 image; Snapchat: requires media)")
|
|
60
60
|
})).min(2).max(25).describe("Array of posts in the thread"),
|
|
61
61
|
schedule_at: z.string().optional().describe("ISO 8601 datetime to schedule")
|
|
62
62
|
},
|
|
@@ -103,7 +103,7 @@ server.tool(
|
|
|
103
103
|
);
|
|
104
104
|
server.tool(
|
|
105
105
|
"chirpie_delete_post",
|
|
106
|
-
"Delete a post. Also deletes from the platform (X, Bluesky, LinkedIn, Threads, Mastodon, Instagram, or
|
|
106
|
+
"Delete a post. Also deletes from the platform (X, Bluesky, LinkedIn, Threads, Mastodon, Instagram, Facebook, Telegram, Reddit, Pinterest, YouTube, Google Business Profile, or Snapchat) if published. Note: TikTok does not support deletion via API.",
|
|
107
107
|
{
|
|
108
108
|
id: z.string().describe("Post ID to delete")
|
|
109
109
|
},
|
|
@@ -118,7 +118,7 @@ server.tool(
|
|
|
118
118
|
);
|
|
119
119
|
server.tool(
|
|
120
120
|
"chirpie_list_accounts",
|
|
121
|
-
"List connected social accounts (X/Twitter, Bluesky, LinkedIn, Threads, Mastodon, Instagram, and
|
|
121
|
+
"List connected social accounts (X/Twitter, Bluesky, LinkedIn, Threads, Mastodon, Instagram, Facebook, Telegram, Reddit, Pinterest, TikTok, YouTube, Google Business Profile, and Snapchat).",
|
|
122
122
|
{},
|
|
123
123
|
async () => {
|
|
124
124
|
try {
|
|
@@ -131,7 +131,7 @@ server.tool(
|
|
|
131
131
|
);
|
|
132
132
|
server.tool(
|
|
133
133
|
"chirpie_analytics",
|
|
134
|
-
"Get analytics (likes, reposts, replies, etc.) for a published post on X, Bluesky, LinkedIn, Threads, Mastodon, Instagram, or
|
|
134
|
+
"Get analytics (likes, reposts, replies, etc.) for a published post on X, Bluesky, LinkedIn, Threads, Mastodon, Instagram, Facebook, Reddit, Pinterest, TikTok, YouTube, or Google Business Profile. Note: Telegram and Snapchat do not expose analytics.",
|
|
135
135
|
{
|
|
136
136
|
post_id: z.string().describe("Post ID to get analytics for")
|
|
137
137
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chirpie/mcp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.7",
|
|
4
4
|
"description": "Chirpie MCP server — social media tools for AI agents",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
],
|
|
32
32
|
"license": "MIT",
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@chirpie/sdk": "^1.0.
|
|
34
|
+
"@chirpie/sdk": "^1.0.7",
|
|
35
35
|
"@modelcontextprotocol/sdk": "^1",
|
|
36
36
|
"zod": "^3.24.4"
|
|
37
37
|
},
|