LLM Pulse MCP Server for Claude
Hosted LLM Pulse MCP server for AI visibility analytics, brand mentions, citations, sentiment, share of voice, recommendations, GEO Writer, and AI traffic workflows.
Open the source and read safety notes before installing.
Citation facts
Source-backed facts for citing this resource, derived directly from the registry — also available as plain text for AI assistants.
- Canonical URL
- https://heyclau.de/entry/mcp/llm-pulse-mcp-server
- Source URLs
- https://llmpulse.ai/features/mcp, https://github.com/LLM-Pulse/llmpulse-mcp, https://llmpulse.ai
- Brand
- LLM Pulse
- Brand domain
- llmpulse.ai
- Brand asset source
- brandfetch
- Safety notes
- LLM Pulse MCP includes read tools for analytics and write-capable workflows for prompts, competitors, tags, annotations, recommendations, GEO Writer, and technical GEO audits., Write scopes should be granted only when AI-assisted edits or audit launches are approved for the account., Some tools follow the same plan gates and team-member permissions as the LLM Pulse app., Review AI-proposed prompt, competitor, tag, annotation, content, or audit changes before approving them in production workspaces.
- Privacy notes
- MCP responses can expose brand names, tracked prompts, AI answer text, citations, sentiment, source domains, competitors, Search Console metrics, AI traffic data, and recommendations to the connected AI client., OAuth tokens and API keys should stay in the MCP client, connector settings, operating-system keychain, or secrets manager, not in chat messages, screenshots, or source control., Assistant transcripts, MCP client logs, exported chats, and support tickets can retain analytics data returned by the server., Headless bearer-token setups depend on the API key owner and plan permissions.
- Author
- LLM Pulse
- Submitted by
- estevecastells
- Claim status
- unclaimed
- Last verified
- 2026-07-06
Safety notes
- LLM Pulse MCP includes read tools for analytics and write-capable workflows for prompts, competitors, tags, annotations, recommendations, GEO Writer, and technical GEO audits.
- Write scopes should be granted only when AI-assisted edits or audit launches are approved for the account.
- Some tools follow the same plan gates and team-member permissions as the LLM Pulse app.
- Review AI-proposed prompt, competitor, tag, annotation, content, or audit changes before approving them in production workspaces.
Privacy notes
- MCP responses can expose brand names, tracked prompts, AI answer text, citations, sentiment, source domains, competitors, Search Console metrics, AI traffic data, and recommendations to the connected AI client.
- OAuth tokens and API keys should stay in the MCP client, connector settings, operating-system keychain, or secrets manager, not in chat messages, screenshots, or source control.
- Assistant transcripts, MCP client logs, exported chats, and support tickets can retain analytics data returned by the server.
- Headless bearer-token setups depend on the API key owner and plan permissions.
Prerequisites
- LLM Pulse account with access to the projects you want Claude to analyze.
- MCP-capable client that supports remote Streamable HTTP servers and OAuth, such as Claude, ChatGPT, Gemini, Cursor, Windsurf, Zed, or a compatible custom agent.
- Optional API key only for Scale and Enterprise headless integrations or local wrapper use.
- Project, competitor, prompt, Search Console, AI traffic, and GEO Writer permissions appropriate to the workflows you plan to run.
Schema details
- Install type
- cli
- Troubleshooting
- Yes
- Scope
- Source repo
- Estimated setup
- 10 minutes
- Difficulty
- intermediate
- Website
- https://llmpulse.ai
- Disclosure
- Commercial hosted MCP server from LLM Pulse. The public GitHub repository contains metadata and a small local stdio wrapper for the hosted endpoint, not the private LLM Pulse application source code. OAuth access is available on every plan in supported clients; bearer API-key fallback is for Scale and Enterprise headless integrations.
Full copyable content
{
"mcpServers": {
"llm-pulse": {
"url": "https://api.llmpulse.ai/api/v1/mcp",
"type": "http"
}
}
}About this resource
Content
LLM Pulse MCP Server connects Claude and other MCP-capable clients to LLM Pulse, an AI visibility analytics platform for monitoring how brands appear in AI search and LLM-generated answers. Teams use it to inspect brand mentions, citations, sentiment, competitor share of voice, weighted visibility, prompt coverage, source domains, recommendations, GEO Writer tasks, Search Console metrics, and AI traffic data from a conversational workflow.
The hosted endpoint is:
https://api.llmpulse.ai/api/v1/mcp
Supported clients can connect through remote Streamable HTTP and authenticate with OAuth. LLM Pulse also documents an API-key fallback for headless integrations on Scale and Enterprise plans, plus a small public wrapper repository for local stdio testing.
Source Review
- https://llmpulse.ai/features/mcp
- https://llmpulse.ai/api-docs
- https://github.com/LLM-Pulse/llmpulse-mcp
- https://raw.githubusercontent.com/LLM-Pulse/llmpulse-mcp/main/README.md
- https://raw.githubusercontent.com/LLM-Pulse/llmpulse-mcp/main/server.json
- https://raw.githubusercontent.com/LLM-Pulse/llmpulse-mcp/main/package.json
- https://raw.githubusercontent.com/LLM-Pulse/llmpulse-mcp/main/src/index.js
These sources were reviewed on 2026-07-06. Prefer the live product docs, API docs, public metadata repository, server manifest, package metadata, and wrapper source for current setup and operating details.
Features
- Remote Streamable HTTP MCP endpoint for LLM Pulse account data.
- OAuth connection path for supported clients, with token refresh handled by the client flow.
- Headless API-key fallback for Scale and Enterprise integrations.
- Project, competitor, tag, model, locale, prompt, execution, citation, source, mention, sentiment, and answer discovery tools.
- Timeseries, summary, share of voice, prompt summary, top source, AI model, and AI traffic analytics where plan access allows.
- Recommendation and GEO Writer workflows for turning visibility data into content and optimization actions.
- Write-capable workflows for adding prompts, competitors, tags, annotations, technical GEO reports, and related account actions when scopes permit.
- Public local wrapper that can expose the hosted tool set through stdio when
LLMPULSE_API_KEYis configured.
Use Cases
- Ask Claude for this month's AI visibility trend across ChatGPT, Perplexity, Gemini, Google AI surfaces, and other tracked models.
- Compare brand share of voice against tracked competitors for a project, locale, model, or prompt collection.
- Pull citations and source domains behind positive, neutral, or negative AI answers.
- Investigate weak prompts, low weighted visibility, missing citations, and sentiment changes without exporting CSV files.
- Draft a GEO Writer brief or recommendation from live LLM Pulse metrics.
- Review AI bot traffic and Search Console context alongside AI visibility data where the connected account has access.
- Let an internal agent monitor brand visibility and propose prompt, competitor, tag, annotation, or content updates for human review.
Installation
Claude Code
Add the hosted MCP endpoint:
claude mcp add --transport http llm-pulse https://api.llmpulse.ai/api/v1/mcp
Open the MCP connection and complete the LLM Pulse OAuth flow when prompted by your client.
Claude, ChatGPT, Gemini, Cursor, Windsurf, Zed, and custom clients
Add the same URL as a custom MCP connector or remote HTTP MCP server:
https://api.llmpulse.ai/api/v1/mcp
Use OAuth in clients that support it. For headless automations on Scale and Enterprise, use the documented bearer-token fallback:
npx mcp-remote https://api.llmpulse.ai/api/v1/mcp --header "Authorization: Bearer YOUR_API_KEY"
Local stdio wrapper
Clone the public wrapper repository and run it with an API key:
npm install
LLMPULSE_API_KEY=llmpulse_your_key_here npm start
Without LLMPULSE_API_KEY, the wrapper exposes a setup/status tool so registries
and users can verify that the server starts before connecting real account data.
Configuration
Remote clients can use the hosted endpoint directly:
{
"mcpServers": {
"llm-pulse": {
"url": "https://api.llmpulse.ai/api/v1/mcp",
"type": "http"
}
}
}
Headless bearer-token setups should keep the API key in client secrets or environment configuration:
{
"mcpServers": {
"llm-pulse": {
"url": "https://api.llmpulse.ai/api/v1/mcp",
"type": "http",
"headers": {
"Authorization": "Bearer llmpulse_your_key_here"
}
}
}
}
Example Prompts
Visibility trend
Show my brand visibility trend for the last 30 days and explain the biggest model-level changes.
Competitor share of voice
Compare our share of voice against our top competitors for the current project this quarter.
Citation investigation
Which domains cite us most often in AI answers, and which high-value prompts still have weak citation coverage?
GEO action plan
Find three prompts where we are visible but poorly positioned, then draft a GEO Writer brief to improve the weakest cluster.
Safety and Privacy
Treat LLM Pulse MCP as access to live account analytics. Read calls can return tracked prompts, brand names, competitor names, AI answer text, citation URLs, source domains, sentiment labels, Search Console metrics, AI traffic data, and recommendations. Only connect clients approved to process that data, and avoid pasting OAuth tokens or API keys into chat.
Write scopes can modify account objects or start workflows. Review any AI-proposed prompt, competitor, tag, annotation, content, or technical audit change before approving it, especially inside shared customer, agency, or white-label workspaces.
Troubleshooting
OAuth connection fails
Confirm that your MCP client supports remote Streamable HTTP and OAuth for custom connectors. If the client does not support OAuth yet, use the documented API-key fallback only where your plan and security policy allow it.
Tools are missing
LLM Pulse filters the MCP tool list by plan, scopes, and team-member permissions. Re-authenticate with the correct account, check the user's project access, and confirm that the requested feature is available on the current plan.
Headless wrapper only shows status
Set LLMPULSE_API_KEY before starting the wrapper. Without an API key, the
wrapper intentionally exposes only the setup/status tool.
Source citations
Add this badge to your README
How it compares
LLM Pulse MCP Server for Claude side by side with 3 alternatives on trust, install, platform support, and disclosed safety notes — all from reviewed registry metadata.
2 trust signals differ across this comparison (Source provenance, Submitter).
| Field | Hosted LLM Pulse MCP server for AI visibility analytics, brand mentions, citations, sentiment, share of voice, recommendations, GEO Writer, and AI traffic workflows. Open dossier | BittleBits hosted MCP server for Generative Engine Optimization with get_score and get_rewrite tools to measure and improve AI search visibility via OAuth. Open dossier | Alpic hosted MCP server to manage cloud-hosted MCP projects—deployments, debugging, and analytics—for apps built and shipped on the Alpic platform. Open dossier | Official Baselight remote MCP server for searching and querying a catalog of 70,000+ public datasets from Claude via OAuth or x-api-key authentication. Open dossier |
|---|---|---|---|---|
| Next steps | ||||
| Trust | ||||
| Review status | ReviewedMaintainer reviewed | ReviewedMaintainer reviewed | ReviewedMaintainer reviewed | ReviewedMaintainer reviewed |
| Package trust | Package not verified | Package not verified | Package not verified | Package not verified |
| Source provenanceDiffers | Source-backed | Submission linkedSource submission | Submission linkedSource submission | Submission linkedSource submission |
| SubmitterDiffers | estevecastells | kiannidev | kiannidev | kiannidev |
| Install risk | Review first | Review first | Review first | Review first |
| Notes | Safety ✓ Privacy ✓ | Safety ✓ Privacy ✓ | Safety ✓ Privacy ✓ | Safety ✓ Privacy ✓ |
| Brand | — | — | — | |
| Category | mcp | mcp | mcp | mcp |
| Source | source-backed | source-backed | source-backed | source-backed |
| Author | LLM Pulse | BittleBits | Alpic | Baselight |
| Added | 2026-07-06 | 2026-06-14 | 2026-06-14 | 2026-06-14 |
| Platforms | Claude CodeClaude Desktop | Claude CodeClaude Desktop | Claude CodeClaude Desktop | Claude CodeClaude Desktop |
| Source repo | — | — | — | — |
| Safety notes | ✓LLM Pulse MCP includes read tools for analytics and write-capable workflows for prompts, competitors, tags, annotations, recommendations, GEO Writer, and technical GEO audits. Write scopes should be granted only when AI-assisted edits or audit launches are approved for the account. Some tools follow the same plan gates and team-member permissions as the LLM Pulse app. Review AI-proposed prompt, competitor, tag, annotation, content, or audit changes before approving them in production workspaces. | ✓get_rewrite may replace marketing copy; review output before publishing to production sites. get_score fetches and analyses live page content from URLs you provide. OAuth tokens grant persistent BittleBits access until revoked. Automated rewrites can introduce factual errors; human review is recommended. | ✓Management tools may trigger redeployments or configuration changes on hosted MCP servers. Analytics and logs may contain end-user queries from your deployed MCP apps. Do not share Alpic credentials across untrusted chat sessions. Verify target project/environment before approving destructive deploy actions. | ✓Query tools may return large result sets; scope filters to avoid excessive data transfer. Some datasets are community-contributed; validate schema and quality before production use. OAuth tokens and API keys grant persistent catalog access until revoked. Do not run unreviewed SQL-like queries against sensitive production mirrors without safeguards. |
| Privacy notes | ✓MCP responses can expose brand names, tracked prompts, AI answer text, citations, sentiment, source domains, competitors, Search Console metrics, AI traffic data, and recommendations to the connected AI client. OAuth tokens and API keys should stay in the MCP client, connector settings, operating-system keychain, or secrets manager, not in chat messages, screenshots, or source control. Assistant transcripts, MCP client logs, exported chats, and support tickets can retain analytics data returned by the server. Headless bearer-token setups depend on the API key owner and plan permissions. | ✓Page URLs and content sent to get_score are processed by BittleBits for analysis. Rewrite requests may include proprietary marketing text; avoid sending unreleased campaign copy to untrusted sessions. OAuth sessions should not be shared across users or pasted into public support threads. | ✓Project metadata, deployment logs, and analytics are processed by Alpic. End-user traffic to your deployed MCP apps is subject to Alpic platform terms. Store Alpic auth tokens in connector secrets, not in repositories. | ✓Search terms and query filters are sent to Baselight and may appear in usage logs. Dataset rows returned through MCP may include PII or licensed third-party content subject to dataset terms. Avoid pasting raw dataset excerpts containing personal data into public channels. |
| Prerequisites |
|
|
|
|
| Install | | | | |
| Config | | | | |
| Citations | ||||
| Claim | Unclaimed | Unclaimed | Unclaimed | Unclaimed |
Related guides
Source-backed guides for putting this to work.
Signals
Loading live community signals…
A short, calm digest of reviewed Claude resources. Unsubscribe any time.