@chirpie/mcp 1.0.16 → 1.0.17
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 +3 -3
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -44,7 +44,7 @@ function registerChirpieTools(server2, resolveClient) {
|
|
|
44
44
|
};
|
|
45
45
|
server2.tool(
|
|
46
46
|
"chirpie_post",
|
|
47
|
-
"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.",
|
|
47
|
+
"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. X posts whose text contains a link are billed at $0.25 each on paid plans and are rejected on the Free plan (x_link_posts_require_paid_plan); X accounts connected with your own X API keys are exempt.",
|
|
48
48
|
{
|
|
49
49
|
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)"),
|
|
50
50
|
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)"),
|
|
@@ -55,7 +55,7 @@ function registerChirpieTools(server2, resolveClient) {
|
|
|
55
55
|
);
|
|
56
56
|
server2.tool(
|
|
57
57
|
"chirpie_thread",
|
|
58
|
-
"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.",
|
|
58
|
+
"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. On X, each post in the thread whose text contains a link is billed at $0.25 on paid plans; on the Free plan such threads are rejected (x_link_posts_require_paid_plan). X accounts connected with your own X API keys are exempt.",
|
|
59
59
|
{
|
|
60
60
|
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."),
|
|
61
61
|
posts: z.array(z.object({
|
|
@@ -191,7 +191,7 @@ function requireClient() {
|
|
|
191
191
|
}
|
|
192
192
|
return client;
|
|
193
193
|
}
|
|
194
|
-
var SERVER_VERSION = true ? "1.0.
|
|
194
|
+
var SERVER_VERSION = true ? "1.0.17" : "dev";
|
|
195
195
|
var server = new McpServer({
|
|
196
196
|
name: "chirpie",
|
|
197
197
|
version: SERVER_VERSION
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chirpie/mcp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.17",
|
|
4
4
|
"mcpName": "io.github.Firefloco/chirpie",
|
|
5
5
|
"description": "Chirpie MCP server — social media tools for AI agents",
|
|
6
6
|
"repository": {
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
],
|
|
51
51
|
"license": "MIT",
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@chirpie/sdk": "^1.0.
|
|
53
|
+
"@chirpie/sdk": "^1.0.12",
|
|
54
54
|
"@modelcontextprotocol/sdk": "^1",
|
|
55
55
|
"zod": "^4.3.6"
|
|
56
56
|
},
|