Georanker MCP Server

GeoRanker Model‑Context‑Protocol server (MCP)

Remote serverstreamable-http

What is the Georanker MCP MCP server?

Georanker mcp mcp server connects Georanker MCP to AI assistants that speak the Model Context Protocol. GeoRanker Model‑Context‑Protocol server (MCP).

What Georanker MCP does

An agent-friendly Model Context Protocol (MCP) server for the GeoRanker High‑Volume API.

Tools it exposes

Once connected, the assistant can call these 11 tools directly:

  • Smithery — friendly discovery** via /.well-known/mcp/server-card.json
  • georanker — //serp/{id}
  • OpenAPIhttp://127.0.0.1:3333/openapi.json
  • georanker_serp.create — georanker_serp.get
  • georanker_serp.delete — georanker_serp.batch_create
  • georanker_serp.batch_get — georanker_serp.compare_locations
  • georanker_keywords.create — georanker_keywords.get
  • georanker_keywords.delete — georanker_keywords.batch_create
  • georanker_keywords.batch_get — georanker_keywords.suggest
  • georanker_domain.whois — georanker_domain.technologies
  • georanker_regions.list — georanker_account.get

Installing the georanker mcp mcp server

The server is distributed via npm as georanker-mcp, so most clients can run it without a manual build step. Add it to your MCP client's configuration and restart the client to pick it up — the copy-paste configs for Claude Desktop, Claude Code and Cursor are on this page.

Configuration

Before the server will start you need to supply 5 environment variables: GEORANKER_API_KEY, GEORANKER_API_BASE_URL, MCP_AUTH_TOKEN, MCP_PUBLIC_URL, YOUR_KEY. Keep credentials in your client's env block or a secrets manager rather than committing them.

Where it fits

Search and scraping servers exist to fix the single most common failure of any assistant: answering from stale training data instead of what is on the web today. Georanker MCP sits in that group, and the shape of its toolset — Smithery, georanker, OpenAPI among others — tells you what it is really for. Worth comparing against the other search web scraping servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.

Practical notes

  • This is a hosted server — you point your client at an endpoint rather than running a local process, so there is nothing to keep updated on your machine.
  • It will not start until its required credentials are present, so set those before wondering why the tools never appear.
  • With 11 tools exposed, expect a noticeable bump in prompt size — disable it in projects that never use Georanker MCP.
  • Maintained by lucas111112.
  • MCP clients ask for confirmation before each tool call by default. Keep that on while you learn what the georanker mcp mcp server actually does with your data.
  • Every entry in this directory is reviewed by hand before it goes live, and details are checked against the project's own documentation.

Available tools

ToolWhat it does
Smitheryfriendly discovery** via /.well-known/mcp/server-card.json
georanker//serp/{id}
OpenAPIhttp://127.0.0.1:3333/openapi.json
georanker_serp.creategeoranker_serp.get
georanker_serp.deletegeoranker_serp.batch_create
georanker_serp.batch_getgeoranker_serp.compare_locations
georanker_keywords.creategeoranker_keywords.get
georanker_keywords.deletegeoranker_keywords.batch_create
georanker_keywords.batch_getgeoranker_keywords.suggest
georanker_domain.whoisgeoranker_domain.technologies
georanker_regions.listgeoranker_account.get

How to install the Georanker MCP MCP server

{
  "mcpServers": {
    "georanker": {
      "command": "npx",
      "args": ["-y", "georanker-mcp"],
      "env": {
        "GEORANKER_API_KEY": "your-value",
        "GEORANKER_API_BASE_URL": "your-value",
        "MCP_AUTH_TOKEN": "your-value",
        "MCP_PUBLIC_URL": "your-value",
        "YOUR_KEY": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
GEORANKER_API_KEYCredential the server authenticates with.Yes
GEORANKER_API_BASE_URLEndpoint or connection string the server talks to.Yes
MCP_AUTH_TOKENCredential the server authenticates with.Yes
MCP_PUBLIC_URLEndpoint or connection string the server talks to.Yes
YOUR_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Georanker MCP to Smithery.
  • Use Georanker MCP to georanker.
  • Use Georanker MCP to OpenAPI.

Frequently asked questions

It connects Georanker MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 11 tools (Smithery, georanker, OpenAPI, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Georanker MCP directly.