@chirpie/mcp 1.0.10 → 1.0.12

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.
Files changed (2) hide show
  1. package/dist/index.js +3 -3
  2. package/package.json +3 -2
package/dist/index.js CHANGED
@@ -27,7 +27,7 @@ function formatError(err) {
27
27
  isError: true
28
28
  };
29
29
  }
30
- var SERVER_VERSION = true ? "1.0.10" : "dev";
30
+ var SERVER_VERSION = true ? "1.0.12" : "dev";
31
31
  var server = new McpServer({
32
32
  name: "chirpie",
33
33
  version: SERVER_VERSION
@@ -39,7 +39,7 @@ server.tool(
39
39
  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)"),
40
40
  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)"),
41
41
  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. 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)."),
42
- schedule_at: z.string().optional().describe("ISO 8601 datetime to schedule the post")
42
+ schedule_at: z.string().optional().describe("ISO 8601 datetime (UTC) to schedule the post. Scheduled posts publish within ~5 minutes of this time.")
43
43
  },
44
44
  async ({ account_id, text, media_urls, schedule_at }) => {
45
45
  try {
@@ -59,7 +59,7 @@ server.tool(
59
59
  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)"),
60
60
  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: 1 image per post; 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)")
61
61
  })).min(2).max(25).describe("Array of posts in the thread"),
62
- schedule_at: z.string().optional().describe("ISO 8601 datetime to schedule")
62
+ schedule_at: z.string().optional().describe("ISO 8601 datetime (UTC) to schedule the thread. Scheduled threads publish within ~5 minutes of this time.")
63
63
  },
64
64
  async ({ account_id, posts, schedule_at }) => {
65
65
  try {
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "@chirpie/mcp",
3
- "version": "1.0.10",
3
+ "version": "1.0.12",
4
+ "mcpName": "io.github.firefloco/chirpie",
4
5
  "description": "Chirpie MCP server — social media tools for AI agents",
5
6
  "repository": {
6
7
  "type": "git",
@@ -49,7 +50,7 @@
49
50
  ],
50
51
  "license": "MIT",
51
52
  "dependencies": {
52
- "@chirpie/sdk": "^1.0.10",
53
+ "@chirpie/sdk": "^1.0.11",
53
54
  "@modelcontextprotocol/sdk": "^1",
54
55
  "zod": "^3.24.4"
55
56
  },