rankcontrol 0.8.0 → 0.8.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.
package/README.md CHANGED
@@ -154,7 +154,7 @@ Or in `.mcp.json` / Cursor `mcp.json`:
154
154
  | Tool | What it does |
155
155
  |---|---|
156
156
  | `get_overview_funnel` | AI crawls / AI visits, last 30 days |
157
- | `get_visibility_score` | Composite score (50% AI + 30% Google + 20% Bing) with subscores |
157
+ | `get_visibility_score` | Composite score blending AI citations with Google and Bing rank share, with subscores |
158
158
  | `get_visibility_trend` | Daily visibility score from stored weekly citation checks |
159
159
  | `get_share_of_voice` | Your citation rate vs competitor mention rates + your share |
160
160
  | `get_citation_sources` | Cited domains typed brand / competitive / UGC / editorial |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rankcontrol",
3
- "version": "0.8.0",
3
+ "version": "0.8.1",
4
4
  "description": "RankControl CLI + MCP server: drive your SEO/AI-visibility workspace from the terminal or any AI agent",
5
5
  "license": "MIT",
6
6
  "homepage": "https://rctrl.com",
package/src/cli.mjs CHANGED
@@ -60,7 +60,7 @@ export function runCli(argv) {
60
60
 
61
61
  program
62
62
  .command("score")
63
- .description("Composite visibility score: 50% AI citation rate + 30% Google + 20% Bing rank share, with subscores")
63
+ .description("Composite visibility score blending AI citation rate with Google and Bing rank share, with subscores")
64
64
  .action(() => api.visibilityScore().then(out).catch(fail));
65
65
 
66
66
  program
package/src/mcp.mjs CHANGED
@@ -29,7 +29,7 @@ const plannedTitle = z.object({
29
29
  });
30
30
 
31
31
  export async function startMcpServer() {
32
- const server = new McpServer({ name: "rankcontrol", version: "0.8.0" });
32
+ const server = new McpServer({ name: "rankcontrol", version: "0.8.1" });
33
33
 
34
34
  server.tool(
35
35
  "get_overview_funnel",
@@ -57,7 +57,7 @@ export async function startMcpServer() {
57
57
 
58
58
  server.tool(
59
59
  "get_visibility_score",
60
- "Composite visibility score for the workspace: 50% AI citation rate + 30% Google + 20% Bing position-weighted top-10 rank share (top 3 = full credit, 4-10 = half). Returns the composite, weights, and per-pillar subscores (the AI pillar includes a per-model breakdown).",
60
+ "Composite AI visibility score for the workspace, blending AI citation rate across the tracked models with Google and Bing rank share. Returns the composite and per-pillar subscores (the AI pillar includes a per-model breakdown).",
61
61
  {},
62
62
  run(() => api.visibilityScore())
63
63
  );