Skip to main content
Glama

webanalyzer

Analyze a website

analyze_website
Read-onlyIdempotent

Analyze a public web page with WebAnalyzer's 290+ deterministic checks and return its 0-100 quality score, letter grade, per-dimension scores (SEO, GEO/AI readiness, performance, accessibility, code quality, UI/UX, data & tracking, security) and the top issues found. Free, no auth. Not for localhost or pages behind a login.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesFull URL of the public page to analyze, e.g. https://example.com

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4.7/5.0
Behavior5/5

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

The description goes well beyond the readOnly/idempotent/destructive annotations by explaining that analysis uses 290+ deterministic checks, is free, requires no auth, and returns specific score components. It also adds an important constraint: the URL must be public and not localhost or behind a login. No contradiction with 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 compact and front-loaded, with the core action and output summary in the first sentence and usage constraints in the second. The dimension list is detailed but earns its place by clarifying what the agent can expect.

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?

Although there is no output schema, the description sufficiently explains what will be returned, including the score format and categories. Combined with the single documented parameter and clear public-access constraints, an agent has everything needed to invoke the tool correctly.

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 schema already fully describes the url parameter, but the description adds essential semantic constraints beyond the schema: the page must be public, not localhost, and not behind a login. This raises the value above the baseline 3 for high schema coverage.

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 uses a specific verb ('Analyze') and resource ('public web page'), and details the exact outputs: a 0-100 score, letter grade, per-dimension scores, and top issues. This clearly differentiates the tool from siblings like get_analysis and get_leaderboard, which are retrieval-oriented.

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 clearly establishes that this tool is for public web pages and explicitly excludes localhost and login-protected pages. It does not name sibling alternatives or explain when to choose get_analysis or get_leaderboard, so it falls short of full routing guidance.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.6/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: analyze_website starts a new analysis, get_analysis retrieves a past result, and get_leaderboard lists top-scoring sites. There is no meaningful overlap or ambiguity between them.

Naming Consistency5/5

All tool names follow the same verb_noun pattern: analyze_website, get_analysis, get_leaderboard. The verbs and nouns are clear, consistent, and predictable.

Tool Count5/5

Three tools is well-scoped for a focused analysis service: one to trigger analysis, one to fetch results, and one to access the leaderboard. Each tool earns its place without redundancy.

Completeness5/5

The surface covers the full workflow for the domain: run a website analysis, retrieve that analysis by ID, and view the public leaderboard. No update or delete operations are necessary for this one-shot, immutable analysis model.