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 +1 -1
- package/package.json +1 -1
- package/src/cli.mjs +1 -1
- package/src/mcp.mjs +2 -2
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
|
|
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
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
|
|
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.
|
|
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
|
|
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
|
);
|