@chirpie/mcp 1.0.2 → 1.0.3
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 or
|
|
36
|
+
"Create a post on X/Twitter, Bluesky, or LinkedIn with optional media. Posts immediately or at a scheduled time.",
|
|
37
37
|
{
|
|
38
|
-
account_id: z.string().describe("Account ID to post from (X or
|
|
39
|
-
text: z.string().max(25e3).describe("Post text (max 280 chars for standard X, 25,000 for X Premium, 300 for Bluesky)"),
|
|
40
|
-
media_urls: z.array(z.string()).max(4).optional().describe("Up to 4 public image URLs. X supports images + video
|
|
38
|
+
account_id: z.string().describe("Account ID to post from (X, Bluesky, or LinkedIn)"),
|
|
39
|
+
text: z.string().max(25e3).describe("Post text (max 280 chars for standard X, 25,000 for X Premium, 300 for Bluesky, 3,000 for LinkedIn)"),
|
|
40
|
+
media_urls: z.array(z.string()).max(4).optional().describe("Up to 4 public image URLs. X supports images + video; Bluesky supports images only (~1MB each); LinkedIn supports images (JPEG, PNG, GIF up to 8MB each)"),
|
|
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 or
|
|
54
|
+
"Create a thread (multiple posts) on X/Twitter, Bluesky, or LinkedIn. Note: LinkedIn posts each item as a separate standalone post (no native threading).",
|
|
55
55
|
{
|
|
56
|
-
account_id: z.string().describe("Account ID to post from (X or
|
|
56
|
+
account_id: z.string().describe("Account ID to post from (X, Bluesky, or LinkedIn)"),
|
|
57
57
|
posts: z.array(z.object({
|
|
58
|
-
text: z.string().max(25e3).describe("Post text (max 280 chars for standard X, 25,000 for X Premium, 300 for Bluesky)"),
|
|
59
|
-
media_urls: z.array(z.string()).max(4).optional().describe("Up to 4 public image URLs (Bluesky: images only, ~1MB each; X: images + video)")
|
|
58
|
+
text: z.string().max(25e3).describe("Post text (max 280 chars for standard X, 25,000 for X Premium, 300 for Bluesky, 3,000 for LinkedIn)"),
|
|
59
|
+
media_urls: z.array(z.string()).max(4).optional().describe("Up to 4 public image URLs (Bluesky: images only, ~1MB each; X: images + video; LinkedIn: images up to 8MB each)")
|
|
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 or
|
|
106
|
+
"Delete a post. Also deletes from the platform (X, Bluesky, or LinkedIn) 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 and
|
|
121
|
+
"List connected social accounts (X/Twitter, Bluesky, and LinkedIn).",
|
|
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 or
|
|
134
|
+
"Get analytics (likes, reposts, replies, etc.) for a published post on X, Bluesky, or LinkedIn.",
|
|
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.3",
|
|
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.3",
|
|
35
35
|
"@modelcontextprotocol/sdk": "^1",
|
|
36
36
|
"zod": "^3.24.4"
|
|
37
37
|
},
|