@buzzposter/mcp 0.1.11 → 0.1.12
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 +6 -6
- package/dist/tools.js +6 -6
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -876,7 +876,7 @@ function registerAccountTools(server2, client2) {
|
|
|
876
876
|
);
|
|
877
877
|
server2.tool(
|
|
878
878
|
"check_accounts_health",
|
|
879
|
-
"Check the health status of all connected social media accounts. Shows which accounts are working, which have warnings, and which need
|
|
879
|
+
"Check the health status of all connected social media accounts. Shows which accounts are working, which have warnings, and which need attention. Call this before scheduling posts to make sure target platforms are healthy. If a token is expiring or an account shows an error, direct the user to reconnect via the BuzzPoster web UI -- reconnection cannot be done through MCP.",
|
|
880
880
|
{},
|
|
881
881
|
{
|
|
882
882
|
title: "Check Account Health",
|
|
@@ -1729,7 +1729,7 @@ import { z as z7 } from "zod";
|
|
|
1729
1729
|
function registerBrandVoiceTools(server2, client2) {
|
|
1730
1730
|
server2.tool(
|
|
1731
1731
|
"get_brand_voice",
|
|
1732
|
-
"Get the customer's brand voice profile and writing rules. IMPORTANT: Call this tool BEFORE creating any post, draft, or content. Use the returned voice description, rules, and examples to match the customer's tone and style in everything you write for them. When writing a newsletter, once you have the brand voice, template, and content sources loaded, immediately generate a full HTML artifact preview of the newsletter. Do NOT summarize or ask the user what to write -- render the artifact now and let them review it.",
|
|
1732
|
+
"Get the customer's brand voice profile and writing rules. Returns: name, description, dos (array), donts (array), platformRules (per-platform object), and examplePosts (array). IMPORTANT: Call this tool BEFORE creating any post, draft, or content. Use the returned voice description, rules, and examples to match the customer's tone and style in everything you write for them. This tool is read-only -- to update brand voice use update_brand_voice. Do NOT store brand voice data in the knowledge base. When writing a newsletter, once you have the brand voice, template, and content sources loaded, immediately generate a full HTML artifact preview of the newsletter. Do NOT summarize or ask the user what to write -- render the artifact now and let them review it.",
|
|
1733
1733
|
{},
|
|
1734
1734
|
{
|
|
1735
1735
|
title: "Get Brand Voice",
|
|
@@ -1924,7 +1924,7 @@ import { z as z8 } from "zod";
|
|
|
1924
1924
|
function registerKnowledgeTools(server2, client2) {
|
|
1925
1925
|
server2.tool(
|
|
1926
1926
|
"get_knowledge_base",
|
|
1927
|
-
"Get all items from the customer's knowledge base. Use this to access reference material about the business, products, team, competitors, and other context that helps you write better content.",
|
|
1927
|
+
"Get all items from the customer's knowledge base. Use this to access reference material about the business, products, team, competitors, and other context that helps you write better content. The knowledge base is ONLY for uploaded documents, URLs, and text references (company info, products, pricing, competitors, stats). Do NOT use this to store or retrieve brand voice profiles or audience definitions -- those have dedicated tools.",
|
|
1928
1928
|
{},
|
|
1929
1929
|
{
|
|
1930
1930
|
title: "Get Knowledge Base",
|
|
@@ -1978,7 +1978,7 @@ function registerKnowledgeTools(server2, client2) {
|
|
|
1978
1978
|
);
|
|
1979
1979
|
server2.tool(
|
|
1980
1980
|
"search_knowledge",
|
|
1981
|
-
"Search the customer's knowledge base by tag or keyword. Use this to find specific reference material when writing about a topic.",
|
|
1981
|
+
"Search the customer's knowledge base by tag or keyword. Use this to find specific reference material when writing about a topic. Search by tag first for best results, falls back to text search. Do NOT use this to find brand voice or audience data -- those have dedicated tools.",
|
|
1982
1982
|
{
|
|
1983
1983
|
query: z8.string().describe(
|
|
1984
1984
|
"Search query - matches against tags first, then falls back to text search on title and content"
|
|
@@ -2029,7 +2029,7 @@ function registerKnowledgeTools(server2, client2) {
|
|
|
2029
2029
|
);
|
|
2030
2030
|
server2.tool(
|
|
2031
2031
|
"add_knowledge",
|
|
2032
|
-
"Add
|
|
2032
|
+
"Add reference material to the customer's knowledge base. Use ONLY for: company info, product details, pricing, team bios, competitor notes, brand guidelines, and statistics. Do NOT add brand voice profiles, audience profiles, or content drafts here -- those have dedicated tools. Always include relevant tags to make items easier to find later.",
|
|
2033
2033
|
{
|
|
2034
2034
|
title: z8.string().describe("Title for the knowledge item"),
|
|
2035
2035
|
content: z8.string().describe("The content/text to save"),
|
|
@@ -2071,7 +2071,7 @@ import { z as z9 } from "zod";
|
|
|
2071
2071
|
function registerAudienceTools(server2, client2) {
|
|
2072
2072
|
server2.tool(
|
|
2073
2073
|
"get_audience",
|
|
2074
|
-
"Get the target audience profile for content creation. Use this tool to understand WHO the content is for
|
|
2074
|
+
"Get the target audience profile for content creation. Use this tool to understand WHO the content is for. Returns: name, description, demographics, painPoints (array), motivations (array), toneNotes, contentPreferences, preferredPlatforms (array), and isDefault. Call this BEFORE writing any post or content so you can tailor messaging to resonate with the intended audience. Pass an audienceId to fetch a specific profile, or omit it to get the default. Use list_audiences to see all available profiles. Do NOT store audience data in the knowledge base.",
|
|
2075
2075
|
{
|
|
2076
2076
|
audienceId: z9.string().optional().describe("Specific audience profile ID. If omitted, returns the default audience.")
|
|
2077
2077
|
},
|
package/dist/tools.js
CHANGED
|
@@ -870,7 +870,7 @@ function registerAccountTools(server, client) {
|
|
|
870
870
|
);
|
|
871
871
|
server.tool(
|
|
872
872
|
"check_accounts_health",
|
|
873
|
-
"Check the health status of all connected social media accounts. Shows which accounts are working, which have warnings, and which need
|
|
873
|
+
"Check the health status of all connected social media accounts. Shows which accounts are working, which have warnings, and which need attention. Call this before scheduling posts to make sure target platforms are healthy. If a token is expiring or an account shows an error, direct the user to reconnect via the BuzzPoster web UI -- reconnection cannot be done through MCP.",
|
|
874
874
|
{},
|
|
875
875
|
{
|
|
876
876
|
title: "Check Account Health",
|
|
@@ -2459,7 +2459,7 @@ import { z as z8 } from "zod";
|
|
|
2459
2459
|
function registerBrandVoiceTools(server, client) {
|
|
2460
2460
|
server.tool(
|
|
2461
2461
|
"get_brand_voice",
|
|
2462
|
-
"Get the customer's brand voice profile and writing rules. IMPORTANT: Call this tool BEFORE creating any post, draft, or content. Use the returned voice description, rules, and examples to match the customer's tone and style in everything you write for them. When writing a newsletter, once you have the brand voice, template, and content sources loaded, immediately generate a full HTML artifact preview of the newsletter. Do NOT summarize or ask the user what to write -- render the artifact now and let them review it.",
|
|
2462
|
+
"Get the customer's brand voice profile and writing rules. Returns: name, description, dos (array), donts (array), platformRules (per-platform object), and examplePosts (array). IMPORTANT: Call this tool BEFORE creating any post, draft, or content. Use the returned voice description, rules, and examples to match the customer's tone and style in everything you write for them. This tool is read-only -- to update brand voice use update_brand_voice. Do NOT store brand voice data in the knowledge base. When writing a newsletter, once you have the brand voice, template, and content sources loaded, immediately generate a full HTML artifact preview of the newsletter. Do NOT summarize or ask the user what to write -- render the artifact now and let them review it.",
|
|
2463
2463
|
{},
|
|
2464
2464
|
{
|
|
2465
2465
|
title: "Get Brand Voice",
|
|
@@ -2654,7 +2654,7 @@ import { z as z9 } from "zod";
|
|
|
2654
2654
|
function registerKnowledgeTools(server, client) {
|
|
2655
2655
|
server.tool(
|
|
2656
2656
|
"get_knowledge_base",
|
|
2657
|
-
"Get all items from the customer's knowledge base. Use this to access reference material about the business, products, team, competitors, and other context that helps you write better content.",
|
|
2657
|
+
"Get all items from the customer's knowledge base. Use this to access reference material about the business, products, team, competitors, and other context that helps you write better content. The knowledge base is ONLY for uploaded documents, URLs, and text references (company info, products, pricing, competitors, stats). Do NOT use this to store or retrieve brand voice profiles or audience definitions -- those have dedicated tools.",
|
|
2658
2658
|
{},
|
|
2659
2659
|
{
|
|
2660
2660
|
title: "Get Knowledge Base",
|
|
@@ -2708,7 +2708,7 @@ function registerKnowledgeTools(server, client) {
|
|
|
2708
2708
|
);
|
|
2709
2709
|
server.tool(
|
|
2710
2710
|
"search_knowledge",
|
|
2711
|
-
"Search the customer's knowledge base by tag or keyword. Use this to find specific reference material when writing about a topic.",
|
|
2711
|
+
"Search the customer's knowledge base by tag or keyword. Use this to find specific reference material when writing about a topic. Search by tag first for best results, falls back to text search. Do NOT use this to find brand voice or audience data -- those have dedicated tools.",
|
|
2712
2712
|
{
|
|
2713
2713
|
query: z9.string().describe(
|
|
2714
2714
|
"Search query - matches against tags first, then falls back to text search on title and content"
|
|
@@ -2759,7 +2759,7 @@ function registerKnowledgeTools(server, client) {
|
|
|
2759
2759
|
);
|
|
2760
2760
|
server.tool(
|
|
2761
2761
|
"add_knowledge",
|
|
2762
|
-
"Add
|
|
2762
|
+
"Add reference material to the customer's knowledge base. Use ONLY for: company info, product details, pricing, team bios, competitor notes, brand guidelines, and statistics. Do NOT add brand voice profiles, audience profiles, or content drafts here -- those have dedicated tools. Always include relevant tags to make items easier to find later.",
|
|
2763
2763
|
{
|
|
2764
2764
|
title: z9.string().describe("Title for the knowledge item"),
|
|
2765
2765
|
content: z9.string().describe("The content/text to save"),
|
|
@@ -2801,7 +2801,7 @@ import { z as z10 } from "zod";
|
|
|
2801
2801
|
function registerAudienceTools(server, client) {
|
|
2802
2802
|
server.tool(
|
|
2803
2803
|
"get_audience",
|
|
2804
|
-
"Get the target audience profile for content creation. Use this tool to understand WHO the content is for
|
|
2804
|
+
"Get the target audience profile for content creation. Use this tool to understand WHO the content is for. Returns: name, description, demographics, painPoints (array), motivations (array), toneNotes, contentPreferences, preferredPlatforms (array), and isDefault. Call this BEFORE writing any post or content so you can tailor messaging to resonate with the intended audience. Pass an audienceId to fetch a specific profile, or omit it to get the default. Use list_audiences to see all available profiles. Do NOT store audience data in the knowledge base.",
|
|
2805
2805
|
{
|
|
2806
2806
|
audienceId: z10.string().optional().describe("Specific audience profile ID. If omitted, returns the default audience.")
|
|
2807
2807
|
},
|