mcp-site-analyst
Provides tools to run custom reports, retrieve realtime data, discover metadata, and access top pages, traffic sources, and demographics from Google Analytics GA4.
Provides tools to query search performance, inspect URLs, list/manage sitemaps, list sites, and access top queries and pages from Google Search Console.
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., "@mcp-site-analystWhat are my top pages this week?"
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.
MCP Site Analyst
An MCP (Model Context Protocol) server that provides Google Analytics (GA4) and Google Search Console data as tools for AI assistants.
Features
13 tools across two Google services
Google Analytics (GA4): Custom reports, realtime data, metadata discovery, top pages, traffic sources, demographics
Google Search Console: Search analytics, sitemaps, URL inspection, site listing, top queries, top pages
Dual transport: stdio (local) and stateless HTTP (remote)
Flexible auth: Service account key file, inline JSON credentials, Application Default Credentials, or CLI argument
Configurable GA4 Property ID: Set once at server level or per-tool call
Optional Bearer token auth for HTTP mode
Related MCP server: seo-mcp
Prerequisites
Google Cloud Project with these APIs enabled:
Service Account with a downloaded JSON key file:
Create a service account → Keys → Add Key → JSON
Grant access to the service account:
GA4: Admin > Property Access Management > Add the service account email as Viewer
Search Console: Settings > Users and permissions > Add the service account email
Installation
npm install
npm run buildUsage
stdio mode (Claude Desktop, Gemini CLI, etc.)
# Using CLI argument
node build/index.js --key-file /path/to/key.json
# Using environment variable
GOOGLE_APPLICATION_CREDENTIALS=/path/to/key.json node build/index.js
# With a default GA4 Property ID
node build/index.js --key-file /path/to/key.json --property-id 123456789HTTP mode
# Default port 3000
node build/index.js --http --key-file /path/to/key.json
# Custom port
node build/index.js --http --port 8080 --key-file /path/to/key.json
# With Bearer token authentication
MCP_AUTH_TOKEN=my-secret-token node build/index.js --http --key-file /path/to/key.jsonThe HTTP endpoint is available at POST http://localhost:3000/mcp (Streamable HTTP, stateless).
A health check endpoint is available at GET http://localhost:3000/health.
Authentication
The server resolves Google credentials in this order:
Priority | Method | Description |
1 |
| CLI argument pointing to a service account JSON key file |
2 |
| Environment variable containing the full JSON key as a string (useful for containers/CI) |
3 |
| Environment variable pointing to a key file path |
4 | Application Default Credentials | Automatic on Cloud Run, GCE, or when authenticated via |
Claude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"site-analyst": {
"command": "node",
"args": [
"/absolute/path/to/mcp-site-analyst/build/index.js",
"--key-file",
"/absolute/path/to/key.json",
"--property-id",
"YOUR_GA4_PROPERTY_ID"
]
}
}
}Gemini CLI Configuration
Add to your .gemini/settings.json:
{
"mcpServers": {
"site-analyst": {
"command": "node",
"args": [
"/absolute/path/to/mcp-site-analyst/build/index.js",
"--key-file",
"/absolute/path/to/key.json"
]
}
}
}Remote HTTP Configuration
If deployed to a remote server (e.g. Cloud Run), configure your client to use the HTTP endpoint:
{
"mcpServers": {
"site-analyst": {
"httpUrl": "https://your-service-url/mcp",
"headers": {
"Authorization": "Bearer YOUR_AUTH_TOKEN"
}
}
}
}Deploying to Cloud Run
A deployment script is included for Google Cloud Run.
Setup
# Copy the example env file and fill in your values
cp .env.example .env
# Edit .env with your GCP project ID, region, and GA4 property IDSee .env.example for all available configuration options.
Deploy
# Deploy with Cloud Build (no local Docker required)
./deploy.sh --cloud-build
# Deploy with local Docker build
./deploy.sh
# Deploy with Bearer token auth enabled
./deploy.sh --token "my-secret-token"On Cloud Run the server uses Application Default Credentials automatically via the configured service account — no key file is needed.
Tools Reference
Google Analytics (GA4)
Tool | Description |
| Run a custom report with flexible dimensions, metrics, date ranges, filters, and sorting |
| Get real-time active user data (last 30 minutes) |
| Discover all available dimensions and metrics |
| Shortcut: Top pages by pageviews |
| Shortcut: Top traffic sources by sessions |
| Shortcut: User breakdown by country/city/language |
Google Search Console
Tool | Description |
| Query search performance (clicks, impressions, CTR, position) with filters |
| List all submitted sitemaps |
| Get details for a specific sitemap |
| Inspect a URL's index status and mobile usability |
| List all sites accessible by the service account |
| Shortcut: Top search queries by clicks |
| Shortcut: Top pages by clicks in search |
Development
# Run in dev mode (no build step needed)
npx tsx src/index.ts --key-file /path/to/key.json
# Build
npm run build
# Test with MCP Inspector
npx @modelcontextprotocol/inspector node build/index.js --key-file /path/to/key.jsonLicense
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
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/danishm/mcp-site-analyst'
If you have feedback or need assistance with the MCP directory API, please join our Discord server