@chirpie/mcp 1.0.0 → 1.0.1
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 +2 -2
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -36,7 +36,7 @@ server.tool(
|
|
|
36
36
|
"Create a post on X/Twitter with optional media (images/video). Posts immediately or at a scheduled time.",
|
|
37
37
|
{
|
|
38
38
|
account_id: z.string().describe("X account ID to post from"),
|
|
39
|
-
text: z.string().max(
|
|
39
|
+
text: z.string().max(25e3).describe("Post text (max 280 chars for standard X accounts, 25,000 for X Premium)"),
|
|
40
40
|
media_urls: z.array(z.string()).max(4).optional().describe("Up to 4 public image/video URLs (JPEG, PNG, WebP, GIF up to 5MB; MP4/MOV up to 512MB)"),
|
|
41
41
|
schedule_at: z.string().optional().describe("ISO 8601 datetime to schedule the post")
|
|
42
42
|
},
|
|
@@ -55,7 +55,7 @@ server.tool(
|
|
|
55
55
|
{
|
|
56
56
|
account_id: z.string().describe("X account ID to post from"),
|
|
57
57
|
posts: z.array(z.object({
|
|
58
|
-
text: z.string().max(
|
|
58
|
+
text: z.string().max(25e3).describe("Post text (max 280 chars for standard X accounts, 25,000 for X Premium)"),
|
|
59
59
|
media_urls: z.array(z.string()).max(4).optional().describe("Up to 4 public image/video URLs")
|
|
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")
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chirpie/mcp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
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.1",
|
|
35
35
|
"@modelcontextprotocol/sdk": "^1",
|
|
36
36
|
"zod": "^3.24.4"
|
|
37
37
|
},
|