Skip to main content
Glama
ruslanlap

PageSpeed Insights MCP Server

PageSpeed Insights MCP Server

Buy Me A Coffee

6つのツールを備えたMCPサーバー。Google PageSpeed Insights & Chrome UX Report API を使用して、Claude、Cursor、または MCP 互換の AI クライアント経由で Web パフォーマンスを直接分析、比較、最適化できます。

Quick Start (Copy & Paste)

{
  "mcpServers": {
    "pagespeed-insights": {
      "command": "npx",
      "args": ["-y", "pagespeed-insights-mcp"],
      "env": { "GOOGLE_API_KEY": "your-google-api-key" }
    }
  }
}

無料の API キーは Google Cloud Console で取得できます。→ claude_desktop_config.json に貼り付けて再起動すれば完了です。(Codex/OpenAI 設定Doocker

npm version npm downloads MCP Toplist Glama MCP

GitHub Package Version CI Documentation Live Demo License: Apache-2.0

Related MCP server: page-speed-insights-mcp

🔥 What Makes It Different

ほとんどの PageSpeed Insights MCP サーバーは 1つ のツールしかラップしていません。「URL に対して PSI を実行する」だけです。このサーバーは、パフォーマンスワークフロー全体をカバーする 6つのワークフローツール を搭載しています。スコアだけでなく、実行プランも提供します。

  • フルツールキット: ページ分析、CrUX の実ユーザーデータ(URL + オリジン)、Lighthouse 監査、複数ページ&バッチ比較、ベースライン、リグレッション追跡

  • デープ診断: エレメントレベル、ネットワーク、JavaScrip、画像最適化、レンダーブロッキング、サードパーティ影響度の分析

  • 実行可能な出力: 生の Lighthouse データを優先順位付きの修正項目に変換するレコメンデーションエンジンと、スクリーンショットの視覚分析

  • 実用な拡張: 繰り返し実行のためのキャッシングと、AI エージェントが行動できるよう調整されたスマートレコメンデーション

  • 実戦済み: npm で公開、Official MCP RegistryGlama に掲載、Vitest による CI テスト済み

**🎬 インタラクティブデモを見る → — アニメーション付きの例でツールの動作を確認できます 代替 URL: https://ruslanlap.github.io/pagespeed-insights-mcp/emo.html

📖 Table of Contents

️ Client Configuration

Claude Desktop

claude_desktop_config.json に次を追記します:

{
  "mcpServers": {
    "pagespeed-insights": {
      "command": "npx",
      "args": ["-y", "-p", "pino-pretty", "-p", "pagespeed-insights-mcp", "pagespeed-insights-mcp"],
      "env": {
        "GOOGLE_API_KEY": "your-google-api-key-here"
      }
    }
  }
}

Codex / OpenAI

設定(TOML)に次を追記します:

[mcp_servers.pagespeed-insights]
command = "npx"
args = [
  "-y",
  "-p",
  "pino-pretty",
  "-p",
  "pagespeed-insights-mcp",
  "pagespeed-insights-mcp"
]
env = { GOOGLE_API_KEY = "your-google-api-key-here" }

注記: ログを適切に整形するには pino-pretty パッケージが必です。上記の設定により、npx 経由で自動的にインストールされます。

For Grok Build (config.toml)

~/.grok/config.toml(グローバル)または <repo>/.grok/config.toml(プロジェクトスコープ、優先度が高い)に追記します:

[mcp_servers.pagespeed-insights]
command = "npx"
args = ["-y", "-p", "pino-pretty", "-p", "pagespeed-insights-mcp", "pagespeed-insights-mcp"]
env = { GOOGLE_API_KEY = "${GOOGLE_API_KEY}" }
enabled = true

# Recommended companion professional MCPs (add once):
# [mcp_servers.github]      — PRs, issues, code search
# [mcp_servers.context7]    — fresh library docs (Upstash)
# [mcp_servers.serena]      — semantic code intelligence (uses your .serena/ if present)

プロジェクトスコープの例(このリポジトリの .grok/config.toml に置く、ローカル dist/index.js + より厳格な Serena 向け):

[mcp_servers.pagespeed-insights]
command = "node"
args = ["/home/ubuntuvm/Projects/pagespeed-insights-mcp/dist/index.js"]
env = { GOOGLE_API_KEY = "${GOOGLE_API_KEY}", NODE_ENV = "development" }

Grok セッション内での確認:

  • /mcps(または Ctrl+L → MCP タブ)→ pagespeed-insights が「running」と表示されることを確認

  • ツールを使用: pagespeed-insights__pagespeed_analyze_pagepagespeed-insights__pagespeed_get_field_data など(名前空間付き)

📊 Example Output

pagespeed_analyze_page による github.com の実際の結果 — モバイルでの Lighthouse 実行1回分です。CrUX の数値は pagespeed_get_field_datascope: "origin" で実行したものです。

Lighthouse lab scores:

Category

Score

Status

Performance (mobile)

54/100

🔴 Poor

Performance (desktop)

52/100

🔴 Poor

Core metrics (mobile):

Metric

Value

Rating

First Contentful Paint

11.9 s

🔴 Poor

Largest Contentful Paint

13.4 s

🔴 Poor

Total Blocking Time

30 ms

🟢 Excellent

Cumulative Layout Shift

0.07

Good

Speed Index

11.9 s

🔴 Poor

CrUX field data — real users, github.com origin (phone):

Metric

p75 (real users)

First Contentful Paint

1.9 s

Largest Contentful Paint

2.2 s

Interaction to Next Paint

243 ms

Cumulative Layout Shift

0.02

結果は実行ごとに異なります。Lighthouse ラボデータはノイジーです(1回の実行は1サンプル)。中央値が必要な場合は runs: 3-5 を使用してください。

ラボ vs フィールド: Lighthouse は接続をスロットリングするため(モバイルで54/100)、CrUX は実際の GitHub 訪問者の体感を示します。どちらの視点もこのサーバーのツールから直接得られます。

📚 Documentation

包括的なドキュメントをオンラインで提供しています。

👉 完全なドキュメントサイトを見る

生の Markdown ファイルは docs/ ディレクトリでも確認できます。また、ローカルで mkdocs serve を実行することもできます。

📝 Release Notes

現在のリリース: v2.0.0

Recent highlights:

  • v2.0.0 — 6つのワークフロー指向の pagespeed_* ツールが、v1 のエンドポイント形状の19ツールを置き換えます。すべてのデータツールは、構造化された結果を Markdown または JSON でサポートします。

この README の上部にあるバッジは、リリースのたびに 自動 で更新されます(npm バージョン、GitHub パッケージバージョン、ダウンロード数)。手動での編集は不要です。

完全なリリース履歴については、CHANGELOG.md を参照してください。

¡ Why You Need This

ペインポイント1 — 「サイトが遅いが、理由がわからない」

PageSpeed Insights を開くと、大量のデータが表示されるだけで、まず何を修正すればよいかわかりません。この MCP は、AI アシスタントにノイズを排除した6つの焦点を絞ったワークフローを提供します。具体的には、レンダーブロッキングのリソース、2 MB を浪沸している特定の画像、メインスレッド時間を1.5秒消費しているサードパーティスクリプトを特定し、影響度でランク付きします。「なぜサイトが遅いのか」と質問すれば、40のメトリクスのダッシュボードではなく、優先順位付きの修正リストが得られます。

ペインポイント2 — 「パフォーマンスのリグレッションを本番環境に出してしまう」

チームは速く動き、毎日デプロイし、マージのたびに完全な Lighthouse 監査を実行する人はいません。Core Web Vitals の低下に誰かが気づく頃には、リグレッションはすでに本番環境にあります。この MCP を使えば、任意の開発者が URL を Claude/Cursor に貼り付けるだけで、ラボデータ、実際の Chrome ユーザーからのフィールドデータ(CrUX)、要素レベルの CLS/LCP デバッグを含む完全な監査を数秒で取得できます。デスクでリグレッションを発見できるか、3日後に SEO チームからの Slack メッセージで発見するかの違いです。

✨ Features

Core Features

  • Performance Analysis — Google PageSpeed Insights を使用した Web ページの分析

  • 📱 Multi-platform Support: モバイルとデスクトップ

  • 🔍 Detailed Lighthouse Reports: 包括的なメトリクス

  • 📊 Simplified Reports: 主要なパフォーマンス指標

  • 🎯 Smart Recommendations: 優先度スコアリングと実行可能な修正

  • 💾 Intelligent Caching: API コールを削減しパフォーマンスを向上

  • 🌍 Localization: 複数の言語に対応

  • Quick Installation: 1コマンドでセットアップ

  • 🐳 Docker Support: コンテナ化されたデプロイメントに対応

Advanced Analysis Tools (New!)

  • 📸 Visual Analysis — スクリーンショット、フィルムストリップ、全ページキャプチャ

  • Element-Level Debugging — 問題を引き起こしている特定の DOM 要素を特定

  • 🌐 Network Waterfall — リクエストの詳細なタイミングとリソース読込

  • JavaScrip Profiling — 実行内訳と未使用コードの検出

  • 🖼️ Image Optimization — 正確な削減量を含む特定の画像問題

  • Render-Blocking Analysis — クリティカルリクエストチェーンと依存関係

  • 🔌 Third-Party Impact — プロバイダーごとにグルプ化されたスクリプトの影響

  • 📊 Full Audits — 全カテゴリの Lighthouse 監査

🚀 Quick Installation

# Set environment variable
export GOOGLE_API_KEY=your-google-api-key
curl -sSL https://raw.githubusercontent.com/ruslanlap/pagespeed-insights-mcp/master/scripts/install.sh | bash

インストーラーはデフォルトで公開 npm パッケージ(pagespeed-insights-mcp)を使用します。代わりにスコープ付き GitHub Packages ビルドをインストールするには、先に GitHub Packages の認証を設定してから次を実行してください:

curl -sSL https://raw.githubusercontent.com/ruslanlap/pagespeed-insights-mcp/master/scripts/install.sh | \
  PAGESPEED_INSIGHTS_MCP_PACKAGE=@ruslanlap/pagespeed-insights-mcp bash

Option 2: Via npm or GitHub Packages

From npm (Public Registry)

# Global installation from npm
npm install -g pagespeed-insights-mcp

# Or use without installation
npx pagespeed-insights-mcp

From GitHub Packages

# First configure authentication (see GITHUB_PACKAGES.md for details)
# Then install globally
npm install -g @ruslanlap/pagespeed-insights-mcp

Note: このパッケージは npm と GitHub Packages の両方で利用できます。

  • npm の場合: npm install pagespeed-insights-mcp を使用

  • GitHub Packages の場合: npm install @ruslanlap/pagespeed-insights-mcp を使用(GitHub の認証が必要)

GitHub Packages からのインストールの詳細な手順は、GITHUB_PACKAGES.md または GitHub Packages page を参照してください。

🔧 Configuration

MCP サーバーが PageSpeed Insights API にアクセスするには、Google API キーが必要です。

# Set environment variable
export GOOGLE_API_KEY=your-google-api-key

# Windows
$env:GOOGLE_API_KEY="your-google-api-key"

# Or pass directly when running
GOOGLE_API_KEY=your-google-api-key npx pagespeed-insights-mcp

📝 MCP Configuration Examples

For Claude Desktop (with pino-pretty logging):

"pagespeed-insights": {
  "command": "npx",
  "args": [
    "-y",
    "-p",
    "pino-pretty",
    "-p",
    "pagespeed-insights-mcp",
    "pagespeed-insights-mcp"
  ],
  "env": {
    "GOOGLE_API_KEY": "your-google-api-key-here"
  }
}

For Codex (with pino-pretty logging):

[mcp_servers.pagespeed-insights]
command = "npx"
args = [
  "-y",
  "-p",
  "pino-pretty",
  "-p",
  "pagespeed-insights-mcp",
  "pagespeed-insights-mcp"
]
env = { GOOGLE_API_KEY = "your-google-api-key-here" }

Note: これらの例には、ログ整形を良くするための pino-pretty が含まれています。プリティログなしの本番利用については、下記の Logging section を参照してください。

Google Antigravity

設定ファイルの例は examples ディレクトリにあります。

Option 3: Docker

docker build -t pagespeed-insights-mcp .
docker run -e GOOGLE_API_KEY=your-key pagespeed-insights-mcp

🔑 Getting Google API Key

この MCP サーバーを使用するには、PageSpeed Insights API が有効な Google API キーが必要です。

[!TIP] ⚡ Quick Setup Link: Google Cloud Credentials Setup Page に直接アクセスすると、自分のプロジェクトでキーをすぐに作成できます。

Step-by-Step Guide

  1. Google Cloud Console に移動します(または クイックセットアップリンク を使用します)。

  2. 新しいプロジェクトを作成するか、既存のプロジェクトを選択します。

  3. PageSpeed Insights API を有効にします:

    • APIs & ServicesLibrary に移動します。

    • 「PageSpeed Insights API」 を検索し、Enable をクリックします。

  4. API キーを作成します:

    • APIs & ServicesCredentials に移動します。

    • Create CredentialsAPI Key の順にクリックします。

    • 生成されたキーをコピーし、設定の GOOGLE_API_KEY として設定します。

⚙️ Claude Desktop の設定

設定パス:macOS ~/Library/Application Support/Claude/claude_desktop_config.jsonWindows %APPDATA%\Claude\claude_desktop_config.jsonLinux ~/.config/claude/claude_desktop_config.json — JSON については、上記の ⚙️ クライアント設定 を参照してください。編集後は Claude Desktop を再起動してください。

💻 使用方法

設定後は、Claude に以下のコマンドのいずれかを指示するだけです:

🔍 ページ全体の分析

Analyze the performance of https://example.com

📱 モバイル端末の分析

Analyze https://example.com for mobile devices with all categories

クイックパフォーマンス概要

Get a quick performance report for https://example.com

🖖️ デスクトップ分析

Analyze https://example.com performance for desktop devices

🌐 複数カテゴリの分析

Perform a full audit of https://example.com including SEO, accessibility, and best practices

🎯 スマートなパフォーマンス推奨事項

Get smart recommendations for improving https://example.com performance

💾 キャッシュ管理

Clear the cache to get fresh data for all subsequent requests

📸 ビジュアル分析

Get visual analysis for https://example.com showing screenshots and loading timeline

🎯 要素レベルのデバッグ

Show me which specific elements are causing performance issues on https://example.com

🌐 ネットワークのウォーターフォール分析

Analyze the network requests and resource loading for https://example.com

⚡ JavaScript パフォーマンス

Get JavaScript execution breakdown for https://example.com

️ 画像最適化の機会

Show me which images need optimization on https://example.com

🚫 レンダーブロッキングリソース

Find render-blocking resources on https://example.com

🔌 サードパーティスクリプトの影響

Analyze third-party script impact on https://example.com performance

📊 Lighthouse 完全監査

Run a full audit including accessibility, SEO, and best practices for https://example.com

利用可能なツール(v2)

バージョン 2 では、従来の 19 個のエンドポイント型ツールが 6 つのワークフローツールに置き換えられました。これは破壊的変更です。MCP クライアントのプロンプト、保存済みのツール呼び出し、およびインテグレーションを、以下の名前を使用するように更新してください。データを返すすべてのツールは responseFormatmarkdown、デフォルト、または json)を受け付け、MCP の structuredContent を返します。

ツール

用途

pagespeed_analyze_page

1 ページの Lighthouse ヘルスチェック、完全なレポート、推奨事項、監査結果、または Mermaid マップ(report)。

pagespeed_diagnose_page

1 つの焦点を絞った調査:visualelementsnetworkjavascriptimagesrender-blocking、または third-parties

pagespeed_get_field_data

page または origin の CrUX 実ユーザーの Core Web Vitals。

pagespeed_compare_pages

2 つのページを今すぐ比較するか、1 つのページを保存済みベースラインと比較します(mode)。

pagespeed_analyze_batch

1〜10 ページをトリアージし、サポートされている場合は進捗通知を表示します。

pagespeed_cleear_cache

デプロイ後にこのプロセスのインメモリ API キャッシュをクリアします。

v1 からの移行

v1 ツール

v2 での置き換え

analyze_page_speedget_performance_summaryget_recommendationsget_full_auditget_performance_map

report=fullsummaryrecommendationsaudit、または performance-map を指定した pagespeed_analyze_page

get_visual_analysisget_element_analysisget_network_analysisget_javascript_analysisget_image_optimization_detailsget_render_blocking_detailsget_third_party_impact

対応する focus を指定した pagespeed_diagnose_page

crux_summaryget_origin_crux

scope=page または origin を指定した pagespeed_get_field_data

compare_pagescompare_baseline

mode=pages または baseline を指定した pagespeed_compare_pages

batch_analyzeclear_cache

pagespeed_analyze_batchpagespeed_clear_cache

full_report

pagespeed_analyze_pagepagespeed_get_field_data を実行します。ラボデータとフィールドデータは混在せず、それぞれ明示的に保持されます。

{"url":"https://example.com","strategy":"mobile","report":"recommendations","responseFormat":"markdown"}
{"url":"https://example.com","focus":"render-blocking","responseFormat":"json"}
{"mode":"baseline","url":"https://example.com","strategy":"mobile","runs":3}

pagespeed-insights-mcp を使用した Claude Desktop での回答例 🔥🔥🔥

開発

開発時により見やすいログ出力のため、pino-pretty をグローバルにインストールすることをお勧めします:

npm install -g pino-pretty
# Development mode
npm run dev

# Build project
npm run build

# Run built server
npm start

ロギング / MCP 環境での pino-pretty

この MCP サーバーはロギングに pino を使用し、NODE_ENV=development のときは pino-retty トランスポートを有効にします。

  • もし最小限のセットアップでとにかく動作させたい場合(Claude、Codex など)は、次のように設定します:

NODE_ENV=production GOOGLE_API_KEY=your-google-api-key npx pagespeed-insights-mcp

または MCP 設定では:

"pagespeed-insights": {
  "command": "npx",
  "args": ["pagespeed-insights-mcp"],
  "env": {
    "GOOGLE_API_KEY": "your-google-api-key-here",
    "NODE_ENV": "production"
  }
}
  • もし開発中に npx を介して見やすいログを出力したい場合は、npx にサーバーと一緒に pino-retty をインストールさせることができます:

"pagespeed-insights": {
  "command": "npx",
  "args": [
    "-y",
    "-p",
    "pino-pretty",
    "-p",
    "pagespeed-insights-mcp",
    "pagespeed-insights-mcp"
  ],
  "env": {
    "GOOGLE_API_KEY": "your-google-api-key-here"
  }
}

トラブルシューティング

"Google API key not provided"

GOOGLE_API_KEY 環境変数が Claude Desktop 設定に設定されていることを確認してください。

"PageSpeed Insights API error: 403"

Google Cloud プロジェクトで PageSpeed Insights API が有効になっているか確認してください。

"Invalid URL"

URL にプロトコルが含まれていることを確認してください — 受け付けられるのは http://https:// のみです。その他のスキーム(file://ftp://javascript: など)はスキームレベルで拒否されます。

要件

  • Node.js 20.19.0 以降(Node 18 は 2025 年 4 月に EOL となり、サポートされなくなりました)。

  • PageSpeed Insights と(オプションで)Chrome UX Report API が有効になっている Google API キー。

セキュリティ

セキュリティ問題は非公開で報告してください — 公開の issue を開かないでください。開示ポリシーと運用者向けのハードニングに関する注意事項については SECURITY.md を参照してください。

謝辞

このプロジェクトの開発への多大な貢献に対し、@engmsaleh(Mohamed Saleh Zaied)に特に感謝します。

このプロジェクトの成長と発展への並外れた、かけがえのない貢献に対し、@system-conf に心から感謝します。あなたの献身、専門知識、そして継続的なサポートは計り知れない影響を与えました — あなたがいなければ、このプロジェクトは今日の姿にはなっていなかったでしょう。🙏

ライセンス

Apache-2.0 — LICENSE を参照してください。特許は、Apache License 2.0 に基づき貢献者によって付与されます。

サポート

バグ報告や機能リクエストについては、リポジトリに issue を作成してください。

Available Tools

6 tools
pagespeed_analyze_batchAnalyze Multiple PagesA
Read-onlyIdempotent

Analyze 1–10 public URLs and return per-page results plus success/failure counts. Use pagespeed_analyze_page for one URL or pagespeed_compare_pages for a direct comparison. Example: triage the ten highest-traffic landing pages. Progress notifications are emitted when supported by the client.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlsYesOne to ten public http(s) URLs.
localeNoBCP-47 locale such as en or uk-UA.en
reportNoPer-page result detail.summary
strategyNoLighthouse device profile. mobile is the default.mobile
categoriesNoLighthouse categories to request.
responseFormatNomarkdown is concise and readable; json is machine-readable and is also available as structuredContent.markdown

Output Schema

ParametersJSON Schema
NameRequiredDescription
toolYes
resultYes
truncatedNo
truncationMessageNo

TDQS

A4.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnly, idempotent, and non-destructive behavior. The description adds meaningful context beyond annotations: it mentions progress notifications emitted when supported by the client and notes that results include success/failure counts. This gives the agent insight into execution behavior without contradicting annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is three sentences, each earning its place: purpose is front-loaded, followed by sibling routing, a practical example, and a behavioral note about progress notifications. There is zero fluff or redundancy, making it easy for an agent to parse quickly.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given six parameters with complete schema documentation, a robust output schema, and annotations covering safety (readOnly, idempotent, non-destructive), the description provides all necessary guidance for correct invocation. It covers usage, alternatives, an example, and a behavioral note—comprehensive for this tool's complexity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 100% description coverage for all six parameters, including units, defaults, and constraints. The tool description adds no additional parameter-level guidance, but since the schema fully documents semantics, the baseline of 3 is appropriate. The description's mention of '1–10 URLs' aligns with schema constraints but adds no new information.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's function: analyze 1–10 public URLs and return per-page results plus success/failure counts. It distinguishes itself from sibling tools by explicitly naming pagespeed_analyze_page for a single URL and pagespeed_compare_pages for direct comparison, making selection unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides explicit routing guidance: use pagespeed_analyze_page for one URL or pagespeed_compare_pages for direct comparison. It also includes a concrete example (triage ten highest-traffic landing pages) that grounds the tool in real usage, leaving no ambiguity about when to invoke it.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

pagespeed_analyze_pageAnalyze a Page with LighthouseA
Read-onlyIdempotent

Run a PageSpeed Insights Lighthouse analysis for one public page. Start with report=summary for a health check; choose full for audits, recommendations for a prioritized fix list, audit for non-performance categories, or performance-map for Mermaid. Example: analyze a mobile product page and return the three most useful remediation steps. Returns a report plus structured result. The Google API is contacted and results may be served from the local cache.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesPublic http(s) URL, for example https://example.com/products.
runsNoDistinct measurements. Use 3–5 when you need a median and spread.
localeNoBCP-47 locale such as en or uk-UA.en
reportNoAmount and shape of returned insight.summary
strategyNoLighthouse device profile. mobile is the default.mobile
categoriesNoLighthouse categories to request.
responseFormatNomarkdown is concise and readable; json is machine-readable and is also available as structuredContent.markdown

Output Schema

ParametersJSON Schema
NameRequiredDescription
toolYes
resultYes
truncatedNo
truncationMessageNo

TDQS

A4.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already mark the tool read-only, idempotent, and non-destructive. The description adds that the Google API is contacted and results may come from a local cache, setting expectations about external dependency and possible staleness. No contradiction with the annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Four short sentences: purpose, report-mode guidance, a concrete example, and an external-behavior caveat. Each sentence earns its place, and the core purpose is front-loaded.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With a fully described schema, enums, annotations covering safety, and an output schema present, the only operational context an agent needs is report-mode selection and the external API/cache behavior — both provided. Nothing significant is missing for correct selection and invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the baseline is 3. The description adds meaning by mapping report enum values to intended use cases and giving a concrete example ('analyze a mobile product page and return the three most useful remediation steps'), which clarifies strategy and report selection beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with 'Run a PageSpeed Insights Lighthouse analysis for one public page' — a specific verb, resource, and scope. Saying 'one public page' differentiates it from batch and compare siblings, and the list of report modes clarifies its capabilities further.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives explicit decision rules for the report parameter ('summary for a health check', 'recommendations for a prioritized fix list'), which tells an agent which mode fits a goal. It does not mention sibling tools by name, but 'one public page' implies single-page scope versus batch analysis.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

pagespeed_clear_cacheClear Local PageSpeed CacheA
Idempotent

Clear only this server process's in-memory PageSpeed response cache, forcing later analysis calls to contact Google again. Use after a deploy when a cached result is stale. It does not change the target website, files, or remote data; repeating the call is safe.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
toolYes
resultYes
truncatedNo
truncationMessageNo

TDQS

A4.7/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Beyond the idempotentHint and destructiveHint annotations, the description adds valuable behavioral context: the cache is in-memory and process-local, later calls will contact Google again, and the tool does not alter the target website or remote data. This gives the agent a clear mental model of side effects.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three compact sentences, each earning its place: the first states the action and effect, the second gives the recommended trigger, and the third clarifies safety and non-destructiveness. The most relevant information is front-loaded.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a zero-parameter tool with an output schema and no nested objects, the description fully covers what the agent needs to decide when to call it and what to expect. No critical behavioral or scoping details are missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters, and schema description coverage is 100%, so there is nothing for the description to add about parameters. The baseline of 4 applies because the description correctly focuses on behavior instead.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb ('Clear') and resource ('this server process's in-memory PageSpeed response cache'), and explicitly contrasts the scope with other tools. This clearly differentiates it from sibling analysis tools like pagespeed_analyze_page or pagespeed_get_field_data.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives an explicit use case: use after a deploy when a cached result is stale. It also states what it does not do, preventing misuse. However, it does not name specific alternatives or explicitly state when not to use it, leaving a small gap.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

pagespeed_compare_pagesCompare Pages or a Stored BaselineA
Destructive

Compare two pages now (mode=pages) or measure one page against its locally stored baseline (mode=baseline). Baseline mode records the first call; use runs=3 or more and rely on guaranteed deltas, not medians alone. Example: compare staging against production, or verify whether a deployed fix improved mobile LCP. replaceBaseline overwrites local baseline state.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesPublic http(s) URL, for example https://example.com/products.
modeYespages compares url and against; baseline compares url to its saved measurement.
runsNoUse 2–5 for baseline mode; 3 is recommended.
againstNoSecond URL, required when mode=pages.
strategyNoDevice profile; part of baseline identity.mobile
categoriesNoLighthouse categories to request.
responseFormatNomarkdown is concise and readable; json is machine-readable and is also available as structuredContent.markdown
replaceBaselineNoOnly baseline mode: overwrite the local stored baseline.

Output Schema

ParametersJSON Schema
NameRequiredDescription
toolYes
resultYes
truncatedNo
truncationMessageNo

TDQS

A4.7/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Beyond the destructiveHint annotation, the description discloses that baseline mode records the first call, warns to rely on guaranteed deltas rather than medians alone, and states that replaceBaseline overwrites local baseline state. This is meaningful behavioral transparency beyond what annotations provide.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three sentences with no wasted words: the first states the core purpose, the second gives operational guidance, and the third provides examples and the destructive state-change warning. The structure is front-loaded and easy to parse.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For an 8-parameter tool with full schema descriptions and an output schema, the description covers the key operational nuances: mode selection, first-call baseline behavior, run counts, examples, and state overwriting. Nothing critical for correct invocation is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the baseline is 3. The description adds value by explaining the behavioral semantics of baseline mode's first call and why runs=3 or more is recommended, rather than merely repeating schema defaults.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb and resource: 'Compare two pages now' or 'measure one page against its locally stored baseline.' It clearly distinguishes the two modes and gives concrete examples, making the tool's purpose distinct from sibling tools like pagespeed_analyze_page.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It explains when to use pages versus baseline mode and provides practical examples such as comparing staging against production or verifying a deployed fix. It does not explicitly name sibling alternatives or exclusions, but the contexts are clear enough to route an agent correctly.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

pagespeed_diagnose_pageDiagnose a Page Performance ProblemA
Read-onlyIdempotent

Inspect one page through exactly one diagnostic lens: visual, elements, network, javascript, images, render-blocking, or third-parties. Use after pagespeed_analyze_page identifies a problem; do not use it for a general score. Example: focus=render-blocking to identify CSS/JS delaying first render. Returns focused evidence rather than a full Lighthouse dump.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesPublic http(s) URL, for example https://example.com/products.
focusYesThe single diagnostic lens to return.
strategyNoLighthouse device profile. mobile is the default.mobile
responseFormatNomarkdown is concise and readable; json is machine-readable and is also available as structuredContent.markdown

Output Schema

ParametersJSON Schema
NameRequiredDescription
toolYes
resultYes
truncatedNo
truncationMessageNo

TDQS

A4.7/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, openWorldHint=true, idempotentHint=true, and destructiveHint=false, covering safety and side-effect expectations. The description adds a meaningful behavioral constraint: 'exactly one diagnostic lens' and 'Returns focused evidence rather than a full Lighthouse dump', which aligns with and enriches the annotation profile. No contradiction exists.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is three sentences of dense, useful information with zero fluff. It front-loads the core purpose, states the usage condition, and embeds a practical example in the same breath. Every sentence earns its place, making it highly efficient.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given that there is a full input schema, an output schema is present (per context), and annotations cover safety and idempotence, the description provides everything an agent needs to decide and invoke correctly: what it does, when to use it (vs. analyze), when not to, and a working example. Nothing essential is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so all four parameters are fully documented in the schema itself (baseline 3). The description adds value by providing a concrete example ('focus=render-blocking to identify CSS/JS delaying first render') that clarifies the practical meaning of the focus parameter beyond its enum listing, which justifies a 4.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb ('Inspect') and resource ('one page') with a defined scope ('exactly one diagnostic lens'), and explicitly distinguishes itself from pagespeed_analyze_page by saying 'do not use it for a general score'. It also lists the available lenses, making the tool's purpose unambiguous and well-differentiated from siblings.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives explicit when-to-use guidance: 'Use after pagespeed_analyze_page identifies a problem' and when-not-to-use: 'do not use it for a general score'. It even provides a concrete example (focus=render-blocking) to illustrate proper invocation, which is more than most tool descriptions offer.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

pagespeed_get_field_dataGet Chrome UX Report Field DataA
Read-onlyIdempotent

Get real-user Core Web Vitals from Chrome UX Report, not Lighthouse lab measurements. Use scope=page for one URL; use scope=origin with a bare origin when the page has insufficient traffic. Example: check mobile LCP and INP for https://example.com/checkout. Returns p75 field metrics or a clear no-data result.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesPublic http(s) URL, for example https://example.com/products.
scopeNopage queries one URL; origin aggregates every page on the origin.page
formFactorNoCrUX device segment. ALL is valid only for scope=origin.PHONE
responseFormatNomarkdown is concise and readable; json is machine-readable and is also available as structuredContent.markdown

Output Schema

ParametersJSON Schema
NameRequiredDescription
toolYes
resultYes
truncatedNo
truncationMessageNo

TDQS

A4.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnly, openWorld, idempotent, and non-destructive behavior; the description adds meaningful behavioral context by stating that it returns p75 field metrics or a clear no-data result, and by clarifying real-user field data rather than lab measurements. It does not mention rate limits or auth, but the annotations cover the safety profile.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Four short sentences carry distinct information: purpose, parameter guidance, example, and return behavior. Every sentence earns its place, and the most important scoping guidance is front-loaded.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For an idempotent, read-only tool with a complete input schema and an output schema, the description covers the key decisions an agent must make: which URL/origin to query, what kind of metrics to expect, and what happens when no data exists. Nothing critical is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the baseline is 3. The description adds value beyond the schema by explaining when to choose page vs origin, specifically mentioning insufficient traffic, and by giving a concrete mobile LCP/INP example that helps ground the formFactor and metric concepts.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb and resource: get real-user Core Web Vitals from Chrome UX Report. It also explicitly distinguishes itself from Lighthouse lab measurements, which sets it apart from sibling analysis tools without needing to inspect their schemas.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It gives concrete selection guidance for scope: page for one URL, origin for a bare origin when page traffic is insufficient. It also clarifies that this is not Lighthouse lab data, but it does not name a specific sibling tool like pagespeed_analyze_page as the lab alternative, so the routing is clear but not fully explicit.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 25 tool updatesv2.0.0
    • Removedanalyze_page_speed
    • Removedbatch_analyze
    • Removedclear_cache
    • Removedcompare_baseline
    • Removedcompare_pages
    • Removedcrux_summary
    • Removedfull_report
    • Removedget_element_analysis
    • Removedget_full_audit
    • Removedget_image_optimization_details
    • Removedget_javascript_analysis
    • Removedget_network_analysis
    • Removedget_origin_crux
    • Removedget_performance_map
    • Removedget_performance_summary
    • Removedget_recommendations
    • Removedget_render_blocking_details
    • Removedget_third_party_impact
    • Removedget_visual_analysis
    • Addedpagespeed_analyze_batch
    • Addedpagespeed_analyze_page
    • Addedpagespeed_clear_cache
    • Addedpagespeed_compare_pages
    • Addedpagespeed_diagnose_page
    • Addedpagespeed_get_field_data
  2. 15 tool updatesv1.7.4
    • Changedanalyze_page_speed2 fields changed
      • addedInput schema / properties / runs
        Added value: +{
        +  "default": 1,
        +  "description": "Distinct analyses to run (default 1). >1 reports the median with min-max spread; cached replays (same fetchTime) are dropped and counted",
        +  "maximum": 5,
        +  "minimum": 1,
        +  "type": "integer"
        +}
      • changedInput schema / properties / strategy / description
        Previous value: -"Analysis strategy"New value: +"Device to simulate: mobile (default), desktop, or both"
    • Changedbatch_analyze1 field changed
      • changedInput schema / properties / strategy / description
        Previous value: -"Analysis strategy"New value: +"Device to simulate: mobile (default), desktop, or both"
    • Changedcompare_pages1 field changed
      • changedInput schema / properties / strategy / description
        Previous value: -"Analysis strategy"New value: +"Device to simulate: mobile (default), desktop, or both"
    • Changedfull_report2 fields changed
      • addedInput schema / properties / runs
        Added value: +{
        +  "default": 1,
        +  "description": "Distinct analyses to run (default 1). >1 reports the median with min-max spread; cached replays (same fetchTime) are dropped and counted",
        +  "maximum": 5,
        +  "minimum": 1,
        +  "type": "integer"
        +}
      • changedInput schema / properties / strategy / description
        Previous value: -"Analysis strategy"New value: +"Device to simulate: mobile (default), desktop, or both"
    • Changedget_element_analysis1 field changed
      • changedInput schema / properties / strategy / description
        Previous value: -"Analysis strategy"New value: +"Device to simulate: mobile (default), desktop, or both"
    • Changedget_full_audit1 field changed
      • changedInput schema / properties / strategy / description
        Previous value: -"Analysis strategy"New value: +"Device to simulate: mobile (default), desktop, or both"
    • Changedget_image_optimization_details1 field changed
      • changedInput schema / properties / strategy / description
        Previous value: -"Analysis strategy"New value: +"Device to simulate: mobile (default), desktop, or both"
    • Changedget_javascript_analysis1 field changed
      • changedInput schema / properties / strategy / description
        Previous value: -"Analysis strategy"New value: +"Device to simulate: mobile (default), desktop, or both"
    • Changedget_network_analysis1 field changed
      • changedInput schema / properties / strategy / description
        Previous value: -"Analysis strategy"New value: +"Device to simulate: mobile (default), desktop, or both"
    • Changedget_performance_map1 field changed
      • changedInput schema / properties / strategy / description
        Previous value: -"Analysis strategy"New value: +"Device to simulate: mobile (default), desktop, or both"
    • Changedget_performance_summary1 field changed
      • changedInput schema / properties / strategy / description
        Previous value: -"Analysis strategy"New value: +"Device to simulate: mobile (default), desktop, or both"
    • Changedget_recommendations2 fields changed
      • addedInput schema / properties / runs
        Added value: +{
        +  "default": 1,
        +  "description": "Distinct analyses to run (default 1). >1 reports the median with min-max spread; cached replays (same fetchTime) are dropped and counted",
        +  "maximum": 5,
        +  "minimum": 1,
        +  "type": "integer"
        +}
      • changedInput schema / properties / strategy / description
        Previous value: -"Analysis strategy"New value: +"Device to simulate: mobile (default), desktop, or both"
    • Changedget_render_blocking_details1 field changed
      • changedInput schema / properties / strategy / description
        Previous value: -"Analysis strategy"New value: +"Device to simulate: mobile (default), desktop, or both"
    • Changedget_third_party_impact1 field changed
      • changedInput schema / properties / strategy / description
        Previous value: -"Analysis strategy"New value: +"Device to simulate: mobile (default), desktop, or both"
    • Changedget_visual_analysis1 field changed
      • changedInput schema / properties / strategy / description
        Previous value: -"Analysis strategy"New value: +"Device to simulate: mobile (default), desktop, or both"
  3. 16 tool updatesv1.7.0
    • Changedanalyze_page_speed1 field changed
      • changedInput schema / properties / strategy / enum
        Previous value: -[
        -  "mobile",
        -  "desktop"
        -]New value: +[
        +  "mobile",
        +  "desktop",
        +  "both"
        +]
    • Changedbatch_analyze1 field changed
      • changedInput schema / properties / strategy / enum
        Previous value: -[
        -  "mobile",
        -  "desktop"
        -]New value: +[
        +  "mobile",
        +  "desktop",
        +  "both"
        +]
    • Addedcompare_baseline
    • Changedcompare_pages1 field changed
      • changedInput schema / properties / strategy / enum
        Previous value: -[
        -  "mobile",
        -  "desktop"
        -]New value: +[
        +  "mobile",
        +  "desktop",
        +  "both"
        +]
    • Changedfull_report1 field changed
      • changedInput schema / properties / strategy / enum
        Previous value: -[
        -  "mobile",
        -  "desktop"
        -]New value: +[
        +  "mobile",
        +  "desktop",
        +  "both"
        +]
    • Changedget_element_analysis1 field changed
      • changedInput schema / properties / strategy / enum
        Previous value: -[
        -  "mobile",
        -  "desktop"
        -]New value: +[
        +  "mobile",
        +  "desktop",
        +  "both"
        +]
    • Changedget_full_audit1 field changed
      • changedInput schema / properties / strategy / enum
        Previous value: -[
        -  "mobile",
        -  "desktop"
        -]New value: +[
        +  "mobile",
        +  "desktop",
        +  "both"
        +]
    • Changedget_image_optimization_details1 field changed
      • changedInput schema / properties / strategy / enum
        Previous value: -[
        -  "mobile",
        -  "desktop"
        -]New value: +[
        +  "mobile",
        +  "desktop",
        +  "both"
        +]
    • Changedget_javascript_analysis1 field changed
      • changedInput schema / properties / strategy / enum
        Previous value: -[
        -  "mobile",
        -  "desktop"
        -]New value: +[
        +  "mobile",
        +  "desktop",
        +  "both"
        +]
    • Changedget_network_analysis1 field changed
      • changedInput schema / properties / strategy / enum
        Previous value: -[
        -  "mobile",
        -  "desktop"
        -]New value: +[
        +  "mobile",
        +  "desktop",
        +  "both"
        +]
    • Changedget_performance_map1 field changed
      • changedInput schema / properties / strategy / enum
        Previous value: -[
        -  "mobile",
        -  "desktop"
        -]New value: +[
        +  "mobile",
        +  "desktop",
        +  "both"
        +]
    • Changedget_performance_summary1 field changed
      • changedInput schema / properties / strategy / enum
        Previous value: -[
        -  "mobile",
        -  "desktop"
        -]New value: +[
        +  "mobile",
        +  "desktop",
        +  "both"
        +]
    • Changedget_recommendations1 field changed
      • changedInput schema / properties / strategy / enum
        Previous value: -[
        -  "mobile",
        -  "desktop"
        -]New value: +[
        +  "mobile",
        +  "desktop",
        +  "both"
        +]
    • Changedget_render_blocking_details1 field changed
      • changedInput schema / properties / strategy / enum
        Previous value: -[
        -  "mobile",
        -  "desktop"
        -]New value: +[
        +  "mobile",
        +  "desktop",
        +  "both"
        +]
    • Changedget_third_party_impact1 field changed
      • changedInput schema / properties / strategy / enum
        Previous value: -[
        -  "mobile",
        -  "desktop"
        -]New value: +[
        +  "mobile",
        +  "desktop",
        +  "both"
        +]
    • Changedget_visual_analysis1 field changed
      • changedInput schema / properties / strategy / enum
        Previous value: -[
        -  "mobile",
        -  "desktop"
        -]New value: +[
        +  "mobile",
        +  "desktop",
        +  "both"
        +]
  4. 1 tool updatev1.5.0
    • Addedget_origin_crux
  5. 1 tool updatev1.4.0
    • Addedget_performance_map
  6. 3 tool updatesv1.2.7
    • Addedget_javascript_analysis
    • Addedget_network_analysis
    • Addedget_third_party_impact
  7. 3 tool updatesv1.2.6
    • Removedget_javascript_analysis
    • Removedget_network_analysis
    • Removedget_third_party_impact
  8. 16 tool updatesv1.2.2
    • First observedanalyze_page_speed
    • First observedbatch_analyze
    • First observedclear_cache
    • First observedcompare_pages
    • First observedcrux_summary
    • First observedfull_report
    • First observedget_element_analysis
    • First observedget_full_audit
    • First observedget_image_optimization_details
    • First observedget_javascript_analysis
    • First observedget_network_analysis
    • First observedget_performance_summary
    • First observedget_recommendations
    • First observedget_render_blocking_details
    • First observedget_third_party_impact
    • First observedget_visual_analysis

TDQS

A4.7/5.0
Disambiguation4/5

Each tool has a distinct workflow: single-page analysis, batch analysis, focused diagnostics, field data, comparisons/baselines, and cache control. The only mild overlap is between analyze_page with audit/recommendation reports and diagnose_page, but the descriptions explicitly position diagnose as a follow-up for specific problem areas.

Naming Consistency5/5

All tools share a consistent pagespeed_ prefix followed by a clear verb_noun pattern: analyze_page, diagnose_page, get_field_data, compare_pages, analyze_batch, clear_cache. The naming is predictable, uniform, and makes the action and target easy to infer.

Tool Count5/5

Six tools is a well-scoped set for a PageSpeed Insights server. Each tool covers a meaningful part of the workflow without redundancy or bloat, and the count feels appropriate for both simple and more advanced performance analysis tasks.

Completeness5/5

The tool surface covers the core domain well: single and batch Lighthouse analysis, targeted diagnostics, real-user field data, comparison/baselining, and cache management. There are no obvious dead ends or missing operations that would prevent an agent from completing a typical PageSpeed investigation.

Maintenance

ActivityActive
ResponsivenessResponsive

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    D
    maintenance
    Core Web Vitals analysis powered by Lighthouse. Four tools: analyze a URL, compare two URLs, check against thresholds, or crawl an entire site. Works with Claude Code, Cursor, Windsurf, and any MCP-compatible AI tool.
    4
    20
    MIT
  • F
    license
    Not graded
    quality
    C
    maintenance
    An MCP server that wraps the Google PageSpeed Insights API to analyse web performance, providing tools for scores, Core Web Vitals, opportunities, diagnostics, and batch analysis.
    -
  • A
    license
    Not graded
    quality
    C
    maintenance
    This MCP server integrates Google PageSpeed Insights to analyze website performance, accessibility, best practices, SEO, and PWA on mobile and desktop, returning detailed audits and optimization opportunities.
    MIT
  • A
    license
    Not graded
    quality
    B
    maintenance
    An MCP server that pulls PageSpeed Insights and Google Search Console data across multiple owned sites, enabling cross-site performance reports and synthesis via Claude.
    MIT

Latest Blog Posts

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/ruslanlap/pagespeed-insights-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server