Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
SerpstatGlobal avatar

LLM Brand Monitor

  • 1 repo stars
  • Updated April 22, 2026
  • SerpstatGlobal/llm-brand-monitor-mcp

LLM Brand Monitor MCP is a MCP server that tracks how 350+ AI models mention your brand via projects, scans, and analysis.

About

LLM Brand Monitor MCP connects your agent to Serpstat’s LLM Brand Monitor service so you can create projects, run scans, and analyze how AI models reference your brand. developers in Launch care about this when traditional SEO is not enough and you need visibility in ChatGPT-class answers and other LLM surfaces. The server advertises coverage of more than 350 AI models, which gives a concrete scale story for monitoring rather than guessing from manual prompts. Setup uses npm with npx, stdio transport, and an LBM_API_KEY from your llmbrandmonitor.com profile. Use it to iterate positioning, FAQ content, and entity clarity once you are shipping something worth being cited. It monitors and reports; it does not replace your content strategy or legal trademark work.

  • Track brand mentions across 350+ AI models
  • Manage projects, run scans, and analyze results from the agent
  • npm @serpstat/llm-brand-monitor-mcp with npx runtime hint
  • Requires LBM_API_KEY from llmbrandmonitor.com profile
  • Official site llmbrandmonitor.com with Serpstat GitHub MCP source

LLM Brand Monitor by the numbers

  • Data as of Jul 7, 2026 (Skillselion catalog sync)
terminal
claude mcp add --env LBM_API_KEY=YOUR_LBM_API_KEY llm-brand-monitor -- npx -y @serpstat/llm-brand-monitor-mcp

Add your badge

Show developers this MCP server is listed on Skillselion. Paste this into your README.

Listed on Skillselion
repo stars1
Package@serpstat/llm-brand-monitor-mcp
TransportSTDIO
AuthRequired
Last updatedApril 22, 2026
RepositorySerpstatGlobal/llm-brand-monitor-mcp

What it does

Monitor how hundreds of AI models talk about your brand so you can improve AI-search and LLM visibility after launch.

Who is it for?

Best when you're optimizing GEO and brand citations right after ship when LLM answers influence discovery.

Skip if: Pre-launch ideas with no brand entity yet or teams that only need classic rank trackers without LLM coverage.

What you get

You can run and review LLM brand scans from your agent and adjust messaging for AI-search and generative discovery.

  • Brand scan projects and comparative LLM mention analysis
  • Actionable visibility insights for content and positioning updates

By the numbers

  • 350+ AI models tracked per official description
  • MCP server version 1.0.1
  • npm package @serpstat/llm-brand-monitor-mcp
README.md

LLM Brand Monitor MCP Server

npm version MCP Badge License: MIT

MCP server for LLM Brand Monitor — a platform that tracks how AI models mention your brand.

Connect Claude, Cursor, Windsurf, or any MCP-compatible client to manage brand monitoring projects, run scans across 350+ LLMs, and analyze results — all through natural language.

Quick Start

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "lbm": {
      "command": "npx",
      "args": ["-y", "@serpstat/llm-brand-monitor-mcp"],
      "env": {
        "LBM_API_KEY": "lbm_your_key_here"
      }
    }
  }
}

Claude Code

claude mcp add lbm-mcp -e LBM_API_KEY=lbm_your_key_here -- npx -y @serpstat/llm-brand-monitor-mcp

From Source

git clone https://github.com/SerpstatGlobal/llm-brand-monitor-mcp.git
cd llm-brand-monitor-mcp
npm install && npm run build

Then add to your MCP client config:

{
  "mcpServers": {
    "lbm": {
      "command": "node",
      "args": ["/path/to/llm-brand-monitor-mcp/dist/index.js"],
      "env": {
        "LBM_API_KEY": "lbm_your_key_here"
      }
    }
  }
}

MCP Inspector

LBM_API_KEY=lbm_your_key_here npx @modelcontextprotocol/inspector node dist/index.js

Getting an API Key

  1. Sign up at llmbrandmonitor.com
  2. Open your Profile page
  3. Copy your API key (starts with lbm_)
API key in LLM Brand Monitor profile

Tools

17 tools across 4 categories:

Projects (7 tools)

Tool What it does
lbm_list_projects List all brand monitoring projects
lbm_get_project Get project details with prompts and models
lbm_create_project Create a new project
lbm_update_project Update project name, models, or monitoring settings
lbm_archive_project Archive a project
lbm_add_prompts Add monitoring prompts to a project
lbm_delete_prompt Remove a prompt from a project

Scans (3 tools)

Tool What it does
lbm_run_scan Start a scan — sends prompts to LLMs and collects responses
lbm_get_scan_status Check scan progress
lbm_list_scans View scan history

Results (5 tools)

Tool What it does
lbm_list_results Browse monitoring results (brand mentions, status)
lbm_get_transcript Read the full LLM response for a specific result
lbm_list_competitors See which competitor brands LLMs mention
lbm_list_links See which URLs and domains LLMs cite
lbm_get_history Competitor mention trends over time

Models & Usage (2 tools)

Tool What it does
lbm_list_models List 350+ available LLM models
lbm_get_usage Check credit balance and usage stats

Typical Workflow

You: "What brand monitoring projects do I have?"
Claude: → lbm_list_projects

You: "Run a scan on the Serpstat project"
Claude: → lbm_run_scan (asks you to confirm — scans spend credits)
       → lbm_get_scan_status (polls until complete)

You: "Show me the results — which models mentioned my brand?"
Claude: → lbm_list_results

You: "What did GPT-5 say exactly?"
Claude: → lbm_get_transcript

You: "Who are my competitors according to AI models?"
Claude: → lbm_list_competitors

Token-Efficient Responses

All list tools return compact CSV by default instead of verbose JSON. This reduces token usage by 80–96%, keeping responses within context limits.

# Default (CSV) — 3-6 key columns
competitor,mentions,visibility_pct
Competitor A,178,72.4
Competitor B,105,42.7

# Full JSON — pass include_all_fields: true
{"data": [{"competitor_id": "...", "competitor_name": "Competitor A", ...}]}

All list tools support offset and limit for pagination.

Configuration

Variable Required Default Description
LBM_API_KEY Yes API key from llmbrandmonitor.com
LBM_API_BASE_URL No https://llmbrandmonitor.com/api/v1 API base URL
LOG_LEVEL No info error, warn, info, debug

Error Handling

Errors include actionable hints for the LLM:

Error Hint
INSUFFICIENT_CREDITS Check balance with lbm_get_usage. Top up at llmbrandmonitor.com/pricing
RATE_LIMITED Wait a few seconds and retry
NOT_FOUND Call lbm_list_projects to verify the ID exists
UNAUTHORIZED API key is invalid — check LBM_API_KEY

Development

npm install
npm run build    # TypeScript → dist/
npm test         # 126 tests

API Documentation

Full REST API docs: llmbrandmonitor.com/api-docs

License

MIT

Recommended MCP Servers

How it compares

LLM brand visibility monitoring via MCP, not a site uptime checker or generic social listening skill.

FAQ

Who is io.github.SerpstatGlobal/llm-brand-monitor for?

Developers and marketers who need to measure and improve how AI models mention their brand across many LLM providers.

When should I use io.github.SerpstatGlobal/llm-brand-monitor?

Use it in Launch when you are actively improving AI-search visibility, competitive mentions, and generative answer accuracy for your brand.

How do I add io.github.SerpstatGlobal/llm-brand-monitor to my agent?

Create an API key at llmbrandmonitor.com/profile, set LBM_API_KEY, add the @serpstat/llm-brand-monitor-mcp stdio server (npx) to your MCP config.

Monitoringseocontent

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.