@buzzposter/mcp 0.3.5 → 0.3.6
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 +374 -116
- package/dist/tools.d.ts +6 -1
- package/dist/tools.js +368 -116
- package/package.json +1 -1
package/dist/tools.d.ts
CHANGED
|
@@ -133,6 +133,11 @@ declare function registerInsightsTools(server: McpServer, client: BuzzPosterClie
|
|
|
133
133
|
|
|
134
134
|
declare function registerMediaTools(server: McpServer, client: BuzzPosterClient): void;
|
|
135
135
|
|
|
136
|
+
interface NewsletterToolOptions {
|
|
137
|
+
allowDirectSend?: boolean;
|
|
138
|
+
}
|
|
139
|
+
declare function registerNewsletterTools(server: McpServer, client: BuzzPosterClient, options?: NewsletterToolOptions): void;
|
|
140
|
+
|
|
136
141
|
declare function registerRssTools(server: McpServer, client: BuzzPosterClient): void;
|
|
137
142
|
|
|
138
143
|
declare function registerAccountTools(server: McpServer, client: BuzzPosterClient): void;
|
|
@@ -159,4 +164,4 @@ declare function registerTeamTools(server: McpServer, client: BuzzPosterClient):
|
|
|
159
164
|
|
|
160
165
|
declare function registerPostPreviewResource(server: McpServer): void;
|
|
161
166
|
|
|
162
|
-
export { BuzzPosterClient, registerAccountTools, registerAudienceTools, registerBrandVoiceTools, registerCalendarTools, registerContextTools, registerGhostTools, registerImageTemplateTools, registerInsightsTools, registerMediaTools, registerPostPreviewResource, registerPostTools, registerPublishingRulesTools, registerRssTools, registerSourceTools, registerTeamTools, registerWordPressTools };
|
|
167
|
+
export { BuzzPosterClient, registerAccountTools, registerAudienceTools, registerBrandVoiceTools, registerCalendarTools, registerContextTools, registerGhostTools, registerImageTemplateTools, registerInsightsTools, registerMediaTools, registerNewsletterTools, registerPostPreviewResource, registerPostTools, registerPublishingRulesTools, registerRssTools, registerSourceTools, registerTeamTools, registerWordPressTools };
|