@buzzposter/mcp 0.3.4 → 0.3.5

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 CHANGED
@@ -3575,6 +3575,13 @@ function registerContextTools(server2, client2) {
3575
3575
  topic: z14.string().optional().describe("Filter knowledge items by topic/tag"),
3576
3576
  include_newsletter_stats: z14.boolean().optional().describe("Include recent analytics")
3577
3577
  },
3578
+ {
3579
+ title: "Get Context",
3580
+ readOnlyHint: true,
3581
+ destructiveHint: false,
3582
+ idempotentHint: true,
3583
+ openWorldHint: true
3584
+ },
3578
3585
  async (args) => {
3579
3586
  const params = {};
3580
3587
  if (args.platform) params.platform = args.platform;
package/dist/tools.js CHANGED
@@ -3569,6 +3569,13 @@ function registerContextTools(server, client) {
3569
3569
  topic: z14.string().optional().describe("Filter knowledge items by topic/tag"),
3570
3570
  include_newsletter_stats: z14.boolean().optional().describe("Include recent analytics")
3571
3571
  },
3572
+ {
3573
+ title: "Get Context",
3574
+ readOnlyHint: true,
3575
+ destructiveHint: false,
3576
+ idempotentHint: true,
3577
+ openWorldHint: true
3578
+ },
3572
3579
  async (args) => {
3573
3580
  const params = {};
3574
3581
  if (args.platform) params.platform = args.platform;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@buzzposter/mcp",
3
- "version": "0.3.4",
3
+ "version": "0.3.5",
4
4
  "description": "BuzzPoster MCP server - Social media, newsletters, and media hosting for any AI chatbot",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",