@chirpie/mcp 1.0.4 → 1.0.6
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, or
|
|
36
|
+
"Create a post on X/Twitter, Bluesky, LinkedIn, Threads, Mastodon, Instagram, or Facebook with optional media. Posts immediately or at a scheduled time. Note: Instagram REQUIRES at least one image (no text-only posts).",
|
|
37
37
|
{
|
|
38
|
-
account_id: z.string().describe("Account ID to post from (X, Bluesky, LinkedIn, or
|
|
39
|
-
text: z.string().max(
|
|
40
|
-
media_urls: z.array(z.string()).max(
|
|
38
|
+
account_id: z.string().describe("Account ID to post from (X, Bluesky, LinkedIn, Threads, Mastodon, Instagram, or Facebook)"),
|
|
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)."),
|
|
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, or
|
|
54
|
+
"Create a thread (multiple posts) on X/Twitter, Bluesky, LinkedIn, Threads, Mastodon, Instagram, or Facebook. X, Bluesky, Threads, and Mastodon support native reply threading. LinkedIn, Instagram, and Facebook degrade gracefully \u2014 each item is published as a standalone post.",
|
|
55
55
|
{
|
|
56
|
-
account_id: z.string().describe("Account ID to post from (X, Bluesky, LinkedIn, or
|
|
56
|
+
account_id: z.string().describe("Account ID to post from (X, Bluesky, LinkedIn, Threads, Mastodon, Instagram, or Facebook). LinkedIn, Instagram, and Facebook degrade to standalone posts."),
|
|
57
57
|
posts: z.array(z.object({
|
|
58
|
-
text: z.string().max(
|
|
59
|
-
media_urls: z.array(z.string()).max(
|
|
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)")
|
|
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, or
|
|
106
|
+
"Delete a post. Also deletes from the platform (X, Bluesky, LinkedIn, Threads, Mastodon, Instagram, or Facebook) if published.",
|
|
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, and
|
|
121
|
+
"List connected social accounts (X/Twitter, Bluesky, LinkedIn, Threads, Mastodon, Instagram, and Facebook).",
|
|
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, or
|
|
134
|
+
"Get analytics (likes, reposts, replies, etc.) for a published post on X, Bluesky, LinkedIn, Threads, Mastodon, Instagram, or Facebook.",
|
|
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.6",
|
|
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.6",
|
|
35
35
|
"@modelcontextprotocol/sdk": "^1",
|
|
36
36
|
"zod": "^3.24.4"
|
|
37
37
|
},
|