MCP Marketplace
BrowseHow It WorksFor CreatorsDocs
Sign inSign up
MCP Marketplace

The curated, security-first marketplace for AI tools.

Product

Browse ToolsSubmit a ToolDocumentationHow It WorksBlogFAQChangelog

Legal

Terms of ServicePrivacy PolicyCommunity Guidelines

Connect

support@mcp-marketplace.ioTwitter / XDiscord

MCP Marketplace © 2026. All rights reserved.

Back to Browse

Llm Brand Monitor MCP Server

by SerpstatGlobal
Developer ToolsUse Caution4.8MCP RegistryLocal
Free

Server data from the Official MCP Registry

Track how 350+ AI models mention your brand — manage projects, run scans, analyze results

About

Track how 350+ AI models mention your brand — manage projects, run scans, analyze results

Security Report

4.8
Use Caution4.8High Risk

This MCP server is well-architected with proper authentication, secure credential handling, and no malicious patterns detected. The codebase demonstrates good security practices with input validation, error handling, and appropriate permissions scoped to the LLM Brand Monitor API. Minor code quality observations noted but do not materially impact security posture. Supply chain analysis found 4 known vulnerabilities in dependencies (0 critical, 2 high severity). Package verification found 1 issue.

7 files analyzed · 8 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

HTTP Network Access

Connects to external APIs or services over the internet.

env_vars

Check that this permission is expected for this type of plugin.

What You'll Need

Set these up before or after installing:

API key from llmbrandmonitor.com/profileRequired

Environment variable: LBM_API_KEY

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-serpstatglobal-llm-brand-monitor": {
      "env": {
        "LBM_API_KEY": "your-lbm-api-key-here"
      },
      "args": [
        "-y",
        "@serpstat/llm-brand-monitor-mcp"
      ],
      "command": "npx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

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_)

Tools

17 tools across 4 categories:

Projects (7 tools)

ToolWhat it does
lbm_list_projectsList all brand monitoring projects
lbm_get_projectGet project details with prompts and models
lbm_create_projectCreate a new project
lbm_update_projectUpdate project name, models, or monitoring settings
lbm_archive_projectArchive a project
lbm_add_promptsAdd monitoring prompts to a project
lbm_delete_promptRemove a prompt from a project

Scans (3 tools)

ToolWhat it does
lbm_run_scanStart a scan — sends prompts to LLMs and collects responses
lbm_get_scan_statusCheck scan progress
lbm_list_scansView scan history

Results (5 tools)

ToolWhat it does
lbm_list_resultsBrowse monitoring results (brand mentions, status)
lbm_get_transcriptRead the full LLM response for a specific result
lbm_list_competitorsSee which competitor brands LLMs mention
lbm_list_linksSee which URLs and domains LLMs cite
lbm_get_historyCompetitor mention trends over time

Models & Usage (2 tools)

ToolWhat it does
lbm_list_modelsList 350+ available LLM models
lbm_get_usageCheck 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

VariableRequiredDefaultDescription
LBM_API_KEYYes—API key from llmbrandmonitor.com
LBM_API_BASE_URLNohttps://llmbrandmonitor.com/api/v1API base URL
LOG_LEVELNoinfoerror, warn, info, debug

Error Handling

Errors include actionable hints for the LLM:

ErrorHint
INSUFFICIENT_CREDITSCheck balance with lbm_get_usage. Top up at llmbrandmonitor.com/pricing
RATE_LIMITEDWait a few seconds and retry
NOT_FOUNDCall lbm_list_projects to verify the ID exists
UNAUTHORIZEDAPI 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

Reviews

No reviews yet

Be the first to review this server!

0

installs

New

no ratings yet

Is this your server?

Claim ownership to manage your listing, respond to reviews, and track installs from your dashboard.

Claim with GitHub

Sign up with the GitHub account that owns this repo

Links

Source CodeDocumentationnpm Package

Details

Published April 22, 2026
Version 1.0.1
0 installs
Local Plugin

More Developer Tools MCP Servers

Git

Free

by Modelcontextprotocol · Developer Tools

Read, search, and manipulate Git repositories programmatically

80.0K
Stars
3
Installs
6.5
Security
No ratings yet
Local

Toleno

Free

by Toleno · Developer Tools

Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.

114
Stars
404
Installs
8.0
Security
4.8
Local

mcp-creator-python

Free

by mcp-marketplace · Developer Tools

Create, build, and publish Python MCP servers to PyPI — conversationally.

-
Stars
55
Installs
10.0
Security
5.0
Local

MarkItDown

Free

by Microsoft · Content & Media

Convert files (PDF, Word, Excel, images, audio) to Markdown for LLM consumption

89.9K
Stars
15
Installs
6.0
Security
5.0
Local

mcp-creator-typescript

Free

by mcp-marketplace · Developer Tools

Scaffold, build, and publish TypeScript MCP servers to npm — conversationally

-
Stars
14
Installs
10.0
Security
5.0
Local

FinAgent

Free

by mcp-marketplace · Finance

Free stock data and market news for any MCP-compatible AI assistant.

-
Stars
13
Installs
10.0
Security
No ratings yet
Local