@alfe.ai/social-mcp 0.2.0 → 0.2.2
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/server.js +2 -2
- package/package.json +4 -4
package/dist/server.js
CHANGED
|
@@ -557,7 +557,7 @@ const ACTION_TOOL_SPECS = [
|
|
|
557
557
|
description: "List recent notifications (mentions, replies, likes, follows) for the selected account.",
|
|
558
558
|
inputSchema: {
|
|
559
559
|
account: accountField,
|
|
560
|
-
limit: z.number().int().min(1).max(100).optional().describe("Max notifications (1-100).")
|
|
560
|
+
limit: z.coerce.number().int().min(1).max(100).optional().describe("Max notifications (1-100).")
|
|
561
561
|
}
|
|
562
562
|
},
|
|
563
563
|
{
|
|
@@ -567,7 +567,7 @@ const ACTION_TOOL_SPECS = [
|
|
|
567
567
|
inputSchema: {
|
|
568
568
|
account: accountField,
|
|
569
569
|
query: z.string().describe("Search query."),
|
|
570
|
-
limit: z.number().int().min(1).max(100).optional().describe("Max results (1-100).")
|
|
570
|
+
limit: z.coerce.number().int().min(1).max(100).optional().describe("Max results (1-100).")
|
|
571
571
|
}
|
|
572
572
|
},
|
|
573
573
|
{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alfe.ai/social-mcp",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "Social MCP server — post, engage, and read on connected social accounts (Bluesky today; X / Meta / Threads / LinkedIn / Pinterest / TikTok / Reddit / YouTube on the approval-gated roster) via Alfe Connect credentials (Pattern A multi-account, provider selected via --provider)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/server.js",
|
|
@@ -19,9 +19,9 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
21
21
|
"zod": "^4.0.5",
|
|
22
|
-
"@alfe.ai/agent-api-client": "0.
|
|
23
|
-
"@alfe.ai/
|
|
24
|
-
"@alfe.ai/
|
|
22
|
+
"@alfe.ai/agent-api-client": "0.13.0",
|
|
23
|
+
"@alfe.ai/mcp-bundler": "0.3.2",
|
|
24
|
+
"@alfe.ai/config": "0.3.0"
|
|
25
25
|
},
|
|
26
26
|
"license": "UNLICENSED",
|
|
27
27
|
"homepage": "https://alfe.ai",
|