@post-ripple/mcp 0.14.0 → 0.15.0
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 +8 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -255,7 +255,14 @@ register("get_account_metrics", "Get follower/profile growth history (daily snap
|
|
|
255
255
|
.optional()
|
|
256
256
|
.describe("Max series points per account, default 50"),
|
|
257
257
|
});
|
|
258
|
-
register("get_engagement_summary", "Get an
|
|
258
|
+
register("get_engagement_summary", "Get an engagement overview for the last N days: totals, per-platform breakdown, top 5 posts by views, and a per-account breakdown (follower count + posts/views/likes/comments/shares in the window). Pass accountId to scope the whole summary — totals and top posts included — to one connected account. The best starting point for 'how is content performing?' or 'how is this account doing?'", {
|
|
259
|
+
...orgParam,
|
|
260
|
+
days: z.number().min(1).max(90).optional().describe("Window in days, default 30"),
|
|
261
|
+
accountId: z
|
|
262
|
+
.string()
|
|
263
|
+
.optional()
|
|
264
|
+
.describe("Scope the summary to one connected account (from list_social_accounts)"),
|
|
265
|
+
});
|
|
259
266
|
// ---- content:write tools ----
|
|
260
267
|
register("import_video_from_url", "Import a video into the library from a public URL (e.g. a TikTok/Instagram/YouTube link or a direct file URL). Download happens asynchronously — poll list_videos until its status is 'completed' before scheduling it.", {
|
|
261
268
|
...orgParam,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@post-ripple/mcp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.15.0",
|
|
4
4
|
"description": "MCP server that lets AI agents (Claude Code, Codex, opencode) manage a Post Ripple workspace: content, scheduling, publishing, and analytics.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|