@mentionova/mcp-server 1.3.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 (2) hide show
  1. package/index.js +2 -2
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -723,7 +723,7 @@ server.tool(
723
723
  grid_id: z.string().describe("Grid UUID"),
724
724
  key: z.string().describe("Column key (unique within grid)"),
725
725
  display_name: z.string().describe("Column display name"),
726
- column_type: z.string().describe("Column type (e.g. text, url, ai_generate)"),
726
+ column_type: z.enum(["text","markdown","html","number","currency","date","datetime","url","email","image_url","file","select","multi_select","checkbox","json","formula","person","brand_kit","llm_prompt","web_fetch","web_scrape","google_search","workflow","human_review","cms_push","mentionova_gsc","mentionova_citation_check","mentionova_competitor_overlap","mentionova_prompt_sync","mentionova_url_sitemap"]).describe("Column type. Use llm_prompt for AI-generated content, web_fetch/web_scrape for fetching URLs, google_search for SERP data, workflow for workflow references."),
727
727
  config: z.record(z.any()).optional().describe("Column configuration"),
728
728
  position: z.number().optional().describe("Position (auto-assigned if omitted)"),
729
729
  depends_on: z.array(z.string()).optional().describe("Keys of columns this depends on"),
@@ -743,7 +743,7 @@ server.tool(
743
743
  grid_id: z.string().describe("Grid UUID"),
744
744
  column_id: z.string().describe("Column UUID"),
745
745
  display_name: z.string().optional(),
746
- column_type: z.string().optional(),
746
+ column_type: z.enum(["text","markdown","html","number","currency","date","datetime","url","email","image_url","file","select","multi_select","checkbox","json","formula","person","brand_kit","llm_prompt","web_fetch","web_scrape","google_search","workflow","human_review","cms_push","mentionova_gsc","mentionova_citation_check","mentionova_competitor_overlap","mentionova_prompt_sync","mentionova_url_sitemap"]).optional(),
747
747
  config: z.record(z.any()).optional(),
748
748
  depends_on: z.array(z.string()).optional(),
749
749
  is_output: z.boolean().optional(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mentionova/mcp-server",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "description": "MCP server for the Mentionova API - connect AI assistants to your AI search visibility data",
5
5
  "type": "module",
6
6
  "main": "index.js",