localrank

1
0
Source

Track local rankings, run SEO audits, and manage agency clients using LocalRank

Install

mkdir -p .claude/skills/localrank && curl -L -o skill.zip "https://mcp.directory/api/skills/download/9055" && unzip -o skill.zip -d .claude/skills/localrank && rm skill.zip

Installs to .claude/skills/localrank

About this skill

LocalRank Skill

Track local rankings, run SEO audits, and manage agency clients using LocalRank.

Last updated: 2026-01-30

Freshness check: If more than 30 days have passed since the last-updated date above, inform the user that this skill may be outdated and point them to the update options below.

Keeping This Skill Updated

Source: github.com/peterw/localrank-agent-skills API docs: app.localrank.so/settings/api

InstallationHow to update
CLI (npx skills)npx skills update
Claude Code plugin/plugin update localrank@localrank-skills
CursorRemote rules auto-sync from GitHub
ManualPull latest from repo or re-copy skills/localrank/

Setup

Before using this skill, ensure:

  1. API Key: Run the setup command to configure your API key securely

  2. Requirements: Node.js 18+ (uses built-in fetch). No other dependencies needed.

Config priority (highest to lowest):

  1. LOCALRANK_API_KEY environment variable
  2. ./.localrank/config.json (project-local)
  3. ~/.config/localrank/config.json (user-global)

Handling "API key not found" errors

CRITICAL: When you receive an "API key not found" error:

  1. Tell the user to run setup - The setup is interactive. Recommend they run:

    <skill-path>/scripts/localrank.js setup
    
  2. Stop and wait - Do not continue with tasks. Wait for the user to complete setup.

DO NOT attempt to search for API keys in other locations or guess credentials.


What LocalRank Does

LocalRank helps local SEO agencies track and improve Google Business Profile rankings:

  • Rank Tracking: Visual grid maps showing where businesses rank across a geographic area
  • GMB Audits: Analyze any Google Business Profile for issues and opportunities
  • LocalBoost: Build citations on 50+ directories to improve local authority
  • SuperBoost: Premium GBP optimization with AI-powered improvements
  • Review Booster: Collect more Google reviews from happy customers

Common Actions

User says...Action
"How are my clients doing?"portfolio:summary
"Check rankings for Acme Plumbing"client:report --business "Acme"
"What should I work on today?"prioritize:today
"Find easy wins"quick-wins:find
"Which clients might churn?"at-risk:clients
"Run an audit on this business"audit:run --url "..."
"Draft an update email for Acme"email:draft --business "Acme"
"How can I help this client rank better?"recommendations:get --business "..."

Workflow

Morning Check-in

# See what needs attention today
./scripts/localrank.js prioritize:today

# Quick overview of all clients
./scripts/localrank.js portfolio:summary

Client Call Prep

# Get full report for a client
./scripts/localrank.js client:report --business "Acme Plumbing"

# Get recommendations for improvement
./scripts/localrank.js recommendations:get --business "Acme Plumbing"

Finding Opportunities

# Keywords close to page 1 (easy wins)
./scripts/localrank.js quick-wins:find

# Clients at risk of churning
./scripts/localrank.js at-risk:clients

Prospect Audits

# Run a GMB audit (costs 500 credits)
./scripts/localrank.js audit:run --url "https://google.com/maps/place/..."

# Check audit results
./scripts/localrank.js audit:get <audit_id>

Commands Reference

Setup & Config

CommandDescription
setupInteractive setup - prompts for API key
setup --key <key>Non-interactive setup
config:showShow current config and API key source

Clients & Businesses

CommandDescription
businesses:listList all tracked businesses
businesses:list --search "name"Search by business name

Rankings & Scans

CommandDescription
scans:listList recent ranking scans
scans:list --business "name"Filter scans by business
scans:list --limit 20Limit results (max 50)
scans:get <scan_id>Get detailed scan with keyword rankings

Reports

CommandDescription
client:report --business "name"Full client report comparing recent scans. Shows wins, drops, visual map URL
portfolio:summaryOverview of all clients - improving, declining, stable
prioritize:todayWhat to work on right now - urgent items and quick wins
quick-wins:findKeywords ranking 11-20 that could reach page 1
quick-wins:find --business "name"Quick wins for specific client
at-risk:clientsClients who might churn - ranking drops, low engagement

GMB Audits

CommandDescription
audit:run --url "google.com/maps/..."Run GMB audit (500 credits). Returns audit_id
audit:get <audit_id>Get audit results - score, issues, recommendations

Tools

CommandDescription
recommendations:get --business "name"How to help a client rank better. Suggests products
email:draft --business "name"Generate monthly update email for a client

Examples

Check portfolio health

./scripts/localrank.js portfolio:summary

Returns:

{
  "total_clients": 15,
  "improving": 8,
  "declining": 2,
  "stable": 5,
  "avg_rank_across_portfolio": 7.3,
  "clients": [...]
}

Get client report

./scripts/localrank.js client:report --business "Acme Plumbing"

Returns:

{
  "business_name": "Acme Plumbing",
  "latest_scan": {
    "date": "2026-01-28",
    "avg_rank": 4.2,
    "keywords": [...]
  },
  "wins": [
    {"keyword": "plumber near me", "from": 8.5, "to": 3.2, "improved_by": 5.3}
  ],
  "drops": [],
  "view_url": "https://app.localrank.so/share/abc123"
}

Find quick wins

./scripts/localrank.js quick-wins:find

Returns keywords ranking 11-20 across all clients - these are close to page 1 and easy to push up.

Run a GMB audit

./scripts/localrank.js audit:run --url "https://google.com/maps/place/..."
# Wait for completion
./scripts/localrank.js audit:get <audit_id>

Draft client email

./scripts/localrank.js email:draft --business "Acme Plumbing"

Returns a ready-to-send monthly update email with rankings, wins, and visual map link.


Understanding the Data

Ranking Values

  • avg_rank: Average position across the geographic grid (lower is better)
  • best_rank: Best position found in any grid point
  • Rankings 1-3 are in the "Local Pack" (visible on Google Maps)
  • Rankings 4-10 are "page 1"
  • Rankings 11-20 are "quick wins" - close to visibility

Visual Maps

Most responses include a view_url like https://app.localrank.so/share/abc123

  • Share these with clients to show ranking coverage
  • The grid shows where the business ranks from different locations

Status Values

  • improving: Rankings got better since last scan
  • declining: Rankings dropped (needs attention)
  • stable: Rankings unchanged
  • new: Only one scan, no comparison data yet

Products to Recommend

When recommendations:get suggests products:

ProductWhen to useWhat it does
SuperBoostAvg rank > 10AI-powered GBP optimization, premium citations
LocalBoostAvg rank 5-10Build 50+ citations to increase local authority
ContentBoostAvg rank > 7AI-generated local content for topical authority
Review BoosterAny clientCollect more Google reviews automatically
Rank Tracker< 5 keywordsTrack more keywords to measure impact

Tips

  • Visual proof: Always include the view_url when showing clients their rankings
  • Quick wins first: Keywords at rank 11-15 are easiest to push to page 1
  • Audit before proposal: Run audit:run on prospects to show them issues
  • Proactive communication: Use at-risk:clients to catch churn early
  • Batch operations: Use portfolio:summary for monthly reviews of all clients

Support

Questions? [email protected]

a-stock-analysis

openclaw

A股实时行情与分时量能分析。获取沪深股票实时价格、涨跌、成交量,分析分时量能分布(早盘/尾盘放量)、主力动向(抢筹/出货信号)、涨停封单。支持持仓管理和盈亏分析。Use when: (1) 查询A股实时行情, (2) 分析主力资金动向, (3) 查看分时成交量分布, (4) 管理股票持仓, (5) 分析持仓盈亏。

624243

research-paper-writer

openclaw

Creates formal academic research papers following IEEE/ACM formatting standards with proper structure, citations, and scholarly writing style. Use when the user asks to write a research paper, academic paper, or conference paper on any topic.

69164

fivem

openclaw

Fix, create, or validate FiveM server resources for QBCore/ESX (config.lua, fxmanifest.lua, items, housing/furniture, scripts, MLOs). Use when asked to debug resource errors, convert ESX↔QB, update fxmanifest versions, add items, or source scripts from GitHub. Also use for SSH key generation for SFTP access.

219145

keyword-research

openclaw

Discovers high-value keywords with search intent analysis, difficulty assessment, and content opportunity mapping. Essential for starting any SEO or GEO content strategy.

38490

weread

openclaw

WeChat Reading (微信读书) CLI tool for fetching notes and highlights. Use when: (1) user asks about weread/微信读书 notes or highlights, (2) fetching today's or recent reading notes, (3) exporting book highlights, (4) managing reading bookshelf, (5) any task involving reading notes from WeChat Reading.

9081

gog

openclaw

Google Workspace CLI for Gmail, Calendar, Drive, Contacts, Sheets, and Docs.

19379

You might also like

ui-ux-pro-max

nextlevelbuilder

"UI/UX design intelligence. 50 styles, 21 palettes, 50 font pairings, 20 charts, 8 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, check UI/UX code. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, mobile app, .html, .tsx, .vue, .svelte. Elements: button, modal, navbar, sidebar, card, table, form, chart. Styles: glassmorphism, claymorphism, minimalism, brutalism, neumorphism, bento grid, dark mode, responsive, skeuomorphism, flat design. Topics: color palette, accessibility, animation, layout, typography, font pairing, spacing, hover, shadow, gradient."

2,2002,027

flutter-development

aj-geddes

Build beautiful cross-platform mobile apps with Flutter and Dart. Covers widgets, state management with Provider/BLoC, navigation, API integration, and material design.

2,0251,573

drawio-diagrams-enhanced

jgtolentino

Create professional draw.io (diagrams.net) diagrams in XML format (.drawio files) with integrated PMP/PMBOK methodologies, extensive visual asset libraries, and industry-standard professional templates. Use this skill when users ask to create flowcharts, swimlane diagrams, cross-functional flowcharts, org charts, network diagrams, UML diagrams, BPMN, project management diagrams (WBS, Gantt, PERT, RACI), risk matrices, stakeholder maps, or any other visual diagram in draw.io format. This skill includes access to custom shape libraries for icons, clipart, and professional symbols.

2,0711,355

pdf-to-markdown

aliceisjustplaying

Convert entire PDF documents to clean, structured Markdown for full context loading. Use this skill when the user wants to extract ALL text from a PDF into context (not grep/search), when discussing or analyzing PDF content in full, when the user mentions "load the whole PDF", "bring the PDF into context", "read the entire PDF", or when partial extraction/grepping would miss important context. This is the preferred method for PDF text extraction over page-by-page or grep approaches.

2,9441,286

godot

bfollington

This skill should be used when working on Godot Engine projects. It provides specialized knowledge of Godot's file formats (.gd, .tscn, .tres), architecture patterns (component-based, signal-driven, resource-based), common pitfalls, validation tools, code templates, and CLI workflows. The `godot` command is available for running the game, validating scripts, importing resources, and exporting builds. Use this skill for tasks involving Godot game development, debugging scene/resource files, implementing game systems, or creating new Godot components.

2,0731,085

nano-banana-pro

garg-aayush

Generate and edit images using Google's Nano Banana Pro (Gemini 3 Pro Image) API. Use when the user asks to generate, create, edit, modify, change, alter, or update images. Also use when user references an existing image file and asks to modify it in any way (e.g., "modify this image", "change the background", "replace X with Y"). Supports both text-to-image generation and image-to-image editing with configurable resolution (1K default, 2K, or 4K for high resolution). DO NOT read the image file first - use this skill directly with the --input-image parameter.

1,754894