@pulspeed/mcp-server
Allows retrieving full Lighthouse audit data for detailed performance analysis.
Allows triggering PageSpeed Insights scans to gather performance metrics like Core Web Vitals.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@@pulspeed/mcp-serverscan https://example.com"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@pulspeed/mcp-server
Website performance monitoring for AI agents.
Pulspeed MCP server exposes 10 tools for scanning sites, reading Core Web Vitals, detecting regressions, and getting AI-powered recommendations — all callable by Claude, Cursor, Windsurf, and any MCP-compatible agent.
Quick Setup
Get an API key
Sign up at pulspeed.ai → Settings → API Tokens → create a token.
Claude Code (CLI)
claude mcp add pulspeed -e PULSPEED_API_KEY=your_token_here -- npx -y @pulspeed/mcp-serverClaude Desktop
Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS):
{
"mcpServers": {
"pulspeed": {
"command": "npx",
"args": ["-y", "@pulspeed/mcp-server"],
"env": {
"PULSPEED_API_KEY": "your_token_here"
}
}
}
}Cursor
Edit .cursor/mcp.json (project) or ~/.cursor/mcp.json (global):
{
"mcpServers": {
"pulspeed": {
"command": "npx",
"args": ["-y", "@pulspeed/mcp-server"],
"env": {
"PULSPEED_API_KEY": "your_token_here"
}
}
}
}Windsurf
Edit ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"pulspeed": {
"command": "npx",
"args": ["-y", "@pulspeed/mcp-server"],
"env": {
"PULSPEED_API_KEY": "your_token_here"
}
}
}
}Related MCP server: Lighthouse MCP
Tools
All tools that identify a site accept either url or site_id.
scan_site
Trigger a PageSpeed Insights scan. Creates the site automatically if not yet tracked. Blocks until done (~30–60s) by default.
Param | Type | Required | Description |
| string | ✓ | URL to scan |
|
| — | Default: |
| boolean | — |
|
bulk_scan
Scan multiple URLs at once (max 10). All jobs are dispatched immediately.
Param | Type | Required | Description |
| string[] | ✓ | 1–10 URLs |
|
| — | Default: |
| boolean | — |
|
list_sites
List all monitored sites with latest scores and scan settings.
get_site_metrics
Core Web Vitals for a site with trend analysis and score history.
Param | Type | Required | Description |
| string | ✓ or | Site URL |
| number | ✓ or | Pulspeed site ID |
|
| — | History window (default: |
get_recommendations
AI-powered optimisation recommendations from the latest scan analysis. Requires Developer or Scale plan.
compare_snapshots
Compare two scans with % deltas and a human-readable assessment (🟢 Significant improvement → 🔴 Significant regression).
Param | Type | Description |
| — | Site identifier (compares latest two) |
| number | Specific newer snapshot |
| number | Specific older snapshot |
list_regressions
Find consecutive scans where the performance score dropped significantly.
Param | Type | Description |
| — | Site identifier |
| number | Min score drop to count (default: |
| number | Scan history to analyse (default: |
get_usage
Current billing-period consumption: scans used/remaining, AI analyses, plan limits.
set_performance_budget
Set metric thresholds for a site. Violations trigger threshold.exceeded webhook events on the next scan.
Param | Type | Description |
| — | Site identifier |
|
| e.g. |
|
| Max LCP in ms, e.g. |
|
| Max FCP in ms |
|
| Max TBT in ms |
|
| Max TTFB in ms |
|
| Max CLS, e.g. |
get_raw_audit
Full Lighthouse audit data for a specific audit key — detailed resource-level breakdown.
Param | Type | Required | Description |
| — | ✓ or | Site identifier |
| number | — | Specific snapshot (default: latest) |
| string | ✓ | Lighthouse audit key |
Common audit keys: render-blocking-resources, bootup-time, unused-javascript, uses-optimized-images, network-requests, uses-text-compression.
Example Prompts
"Scan https://mysite.com and tell me the performance score"
"What's the LCP trend for mysite.com over the last 30 days?"
"My site slowed down today — what changed?"
"Scan all pages: homepage, /about, /blog and compare their scores"
"Set a performance budget: score ≥ 80, LCP ≤ 2500ms"
"Show me the render-blocking resources slowing down mysite.com"Example: Diagnose a regression
User: "My Lighthouse score dropped 12 points overnight. What happened?"
→ list_regressions(url="https://mysite.com", threshold=5)
"🔴 CRITICAL −12 pts: 78 → 66 on 2026-02-22 (snapshot #142)"
→ compare_snapshots(url="https://mysite.com")
"LCP: 2100ms → 3800ms (+81% ✗) TBT: 180ms → 520ms (+189% ✗)"
→ get_raw_audit(url="https://mysite.com", audit_key="bootup-time")
"analytics-v2.js — 1840ms execution. Saves 1.2s if deferred."
Agent: "A new analytics script blocks the main thread for 1.84s,
causing LCP and TBT to spike. Defer or async-load it."Environment Variables
Variable | Required | Default | Description |
| ✓ | — | API token from pulspeed.ai/settings |
| — |
| Override for self-hosted |
Plans
All plans include MCP access. Quotas apply:
Plan | Scans/month | AI Analysis | Webhooks |
Free | 30 | 5/month | — |
Developer ($29) | 500 | Included | 5 endpoints |
Scale ($79) | 2,000 | Included | 20 endpoints |
Development
git clone https://github.com/pulspeed/mcp-server
cd mcp-server
npm install
npm run build # compile TypeScript → dist/
npm run dev # watch mode
npm start # run compiled serverLicense
MIT © Pulspeed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityDmaintenanceEnables AI models to analyze webpage performance using the Google PageSpeed Insights API, providing real-time performance scores and improvement suggestions.Last updated19911MIT
- Alicense-qualityDmaintenanceEnables AI models to perform Google Lighthouse website performance analysis, including Core Web Vitals, accessibility, SEO audits, and actionable optimization recommendations. Provides comprehensive web performance insights through natural language interactions.Last updated8093MIT
- Alicense-qualityDmaintenanceMonitor website health, uptime, SEO, security and performance via your AI assistant.Last updatedMIT
- Alicense-qualityCmaintenanceEnables AI assistants to control and inspect a live Chrome browser for automated web debugging, performance analysis, and Lighthouse audits. It allows agents to capture screenshots, monitor network requests, and measure Core Web Vitals using plain-English prompts.Last updated1,408,230Apache 2.0
Related MCP Connectors
Website performance monitoring: scans, Core Web Vitals, RUM data and alerts.
SEO research, audits, backlinks, GSC, and content workflow tools for AI agents.
AI QA tester — real browsers scan sites for bugs, SEO, perf, and accessibility issues via chat.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/pulspeed/mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server