kadenzo-mcp 1.2.0 → 1.3.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.
Files changed (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +2 -0
  3. package/index.js +31 -1
  4. package/package.json +10 -2
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Kadenzo
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -22,6 +22,8 @@ just *draft* content — it can **ship** it.
22
22
  | `get_post_analytics` | Per-channel metrics for a post you scheduled |
23
23
  | `generate_content` | Generate post copy for a platform from a topic ("generate then schedule") |
24
24
  | `get_best_times` | Personalized best posting times for an account (Professional+) |
25
+ | `list_mentions` | Social-listening mentions (who's talking about your keywords) |
26
+ | `post_comment` | Post a comment/reply to your post (instagram/facebook/linkedin) |
25
27
 
26
28
  ## Setup
27
29
 
package/index.js CHANGED
@@ -163,6 +163,36 @@ server.tool(
163
163
  async ({ account_id }) => { try { return ok(await api('GET', `/accounts/${account_id}/best-times`)) } catch (e) { return fail(e) } },
164
164
  )
165
165
 
166
+ server.tool(
167
+ 'list_mentions',
168
+ 'Your social-listening mentions — who is talking about the keywords you track (reddit/bluesky/youtube/hackernews/…), newest first. Filter by platform, since (ISO), or unread.',
169
+ {
170
+ platform: z.string().optional(),
171
+ since: z.string().optional().describe('ISO datetime; only mentions published after this.'),
172
+ unread: z.boolean().optional(),
173
+ limit: z.number().optional(),
174
+ offset: z.number().optional(),
175
+ },
176
+ async (a) => {
177
+ try {
178
+ const query = { platform: a.platform, since: a.since, limit: a.limit, offset: a.offset }
179
+ if (a.unread) query.unread = 'true'
180
+ return ok(await api('GET', '/mentions', { query }))
181
+ } catch (e) { return fail(e) }
182
+ },
183
+ )
184
+
185
+ server.tool(
186
+ 'post_comment',
187
+ 'Post a comment/reply to one of your posts. account_id from list_accounts; target_id is the platform post/media/comment id to comment on. Supported: instagram, facebook, linkedin.',
188
+ {
189
+ account_id: z.string(),
190
+ target_id: z.string().describe('The platform post/media/comment id to comment on.'),
191
+ text: z.string(),
192
+ },
193
+ async (a) => { try { return ok(await api('POST', '/comments', { body: a })) } catch (e) { return fail(e) } },
194
+ )
195
+
166
196
  const transport = new StdioServerTransport()
167
197
  await server.connect(transport)
168
- console.error('Kadenzo MCP server running (stdio). 11 tools available.')
198
+ console.error('Kadenzo MCP server running (stdio). 13 tools available.')
package/package.json CHANGED
@@ -1,7 +1,8 @@
1
1
  {
2
2
  "name": "kadenzo-mcp",
3
- "version": "1.2.0",
4
- "description": "MCP server for Kadenzo — schedule, manage, and analyze social posts across 11 networks from any AI agent (Claude, Cursor, ChatGPT).",
3
+ "version": "1.3.1",
4
+ "mcpName": "io.github.jors7/kadenzo-mcp",
5
+ "description": "MCP server for Kadenzo — schedule, manage, generate, and analyze social posts across 11 networks from any AI agent (Claude, Cursor, ChatGPT).",
5
6
  "type": "module",
6
7
  "bin": {
7
8
  "kadenzo-mcp": "./index.js"
@@ -19,6 +20,13 @@
19
20
  "ai-agents"
20
21
  ],
21
22
  "homepage": "https://kadenzo.app",
23
+ "repository": {
24
+ "type": "git",
25
+ "url": "git+https://github.com/jors7/kadenzo-mcp.git"
26
+ },
27
+ "bugs": {
28
+ "url": "https://github.com/jors7/kadenzo-mcp/issues"
29
+ },
22
30
  "license": "MIT",
23
31
  "engines": {
24
32
  "node": ">=18"