@rankcli/mcp-server 0.0.3 → 0.0.5

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/README.md +7 -1
  2. package/package.json +17 -3
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @rankcli/mcp-server
2
2
 
3
- Free, local SEO + GEO (AI-search-citation) analysis as an MCP tool. No signup, no API key, nothing sent to RankCLI's servers — it runs entirely inside your MCP host (Claude Code, Claude Desktop, Cursor, etc.) against HTML you already have or that your host fetches for you.
3
+ Free, local SEO + GEO (AI-search-citation) analysis as an MCP tool. No signup, no API key, nothing sent to RankCLI's servers — it runs entirely inside your MCP host (Claude Code, Claude Desktop, Cursor, etc.) against HTML you already have or that your host fetches for you. The one exception is `rankcli_connect`, an explicit opt-in tool that links this server to a RankCLI account.
4
4
 
5
5
  ```bash
6
6
  npx @rankcli/mcp-server
@@ -36,6 +36,12 @@ npx @rankcli/mcp-server
36
36
  | `seo_internal_links` | Anchor text quality, orphan-page risk |
37
37
  | `seo_mobile` | Viewport, touch targets, PWA readiness |
38
38
  | `seo_ai_crawlers` | Reference list of known AI crawler user agents |
39
+ | `rankcli_connect` | Link this server to a RankCLI account for GitHub auto-fix PRs, scheduled monitoring, and a dashboard with audit history. Opens a browser tab to approve; the only tool here that contacts rankcli.dev |
40
+ | `rankcli_disconnect` | Unlink this server from your RankCLI account (local only — doesn't touch the account itself) |
41
+
42
+ ## Connecting your account
43
+
44
+ Ask Claude to "connect my RankCLI account," or call `rankcli_connect` directly. It opens rankcli.dev in your browser to approve (or asks for permission first, on MCP hosts that support that inline) - once approved, this server and the `rankcli` CLI on the same machine both use the connection, with nothing further to configure. It works the same on the free plan: connect a BYOK AI provider key at [rankcli.dev/account?tab=ai-provider](https://rankcli.dev/account?tab=ai-provider) and auto-fix PRs run on your own key at no cost, including several providers with genuinely free tiers.
39
45
 
40
46
  ## Example
41
47
 
package/package.json CHANGED
@@ -1,7 +1,8 @@
1
1
  {
2
2
  "name": "@rankcli/mcp-server",
3
- "version": "0.0.3",
4
- "description": "MCP (Model Context Protocol) server for RankCLI SEO analysis",
3
+ "version": "0.0.5",
4
+ "mcpName": "io.github.integrallis/rankcli-mcp-server",
5
+ "description": "Free, local SEO + GEO (AI-search-citation) analysis for AI assistants - audits GEO/AI-crawler access, Core Web Vitals, structured data, security headers, mobile, and images with no signup or API key.",
5
6
  "type": "module",
6
7
  "main": "dist/index.js",
7
8
  "types": "dist/index.d.ts",
@@ -17,17 +18,30 @@
17
18
  },
18
19
  "keywords": [
19
20
  "mcp",
21
+ "mcp-server",
20
22
  "model-context-protocol",
21
23
  "seo",
24
+ "geo",
25
+ "generative-engine-optimization",
26
+ "ai-search",
22
27
  "ai",
23
28
  "claude",
24
29
  "rankcli"
25
30
  ],
26
31
  "author": "Integrallis",
27
32
  "license": "MIT",
33
+ "homepage": "https://rankcli.dev",
34
+ "repository": {
35
+ "type": "git",
36
+ "url": "https://github.com/integrallis/rankcli.dev",
37
+ "directory": "packages/mcp-server"
38
+ },
39
+ "bugs": {
40
+ "url": "https://github.com/integrallis/rankcli.dev/issues"
41
+ },
28
42
  "dependencies": {
29
43
  "@modelcontextprotocol/sdk": "^1.30.0",
30
- "@rankcli/agent-runtime": "^0.0.17",
44
+ "@rankcli/agent-runtime": "^0.0.18",
31
45
  "conf": "^12.0.0"
32
46
  },
33
47
  "devDependencies": {