webanalyzer
Server Details
Free website analyzer: score any public URL 0-100 across 8 quality dimensions. No auth.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- Gechu03/webanalyzer-js
- GitHub Stars
- 0
Available Tools
3 toolsanalyze_websiteAnalyze a websiteARead-onlyIdempotentInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Full URL of the public page to analyze, e.g. https://example.com |
TDQS
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.
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.
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.
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.
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.
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.
get_analysisGet a stored analysisARead-onlyIdempotentInspect
Fetch the result of a previous analyze_website run by its analysis id: the 0-100 score, grade, per-dimension scores and top issues. Ids come from analyze_website results and report URLs (webanalyzer.dev/report/).
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Analysis id returned by analyze_website (also the last segment of a report or badge URL). |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and idempotentHint=true, so the safety profile is covered. The description adds value by specifying what the response contains (score, grade, per-dimension scores, top issues) and where valid ids come from, giving the agent useful behavioral context beyond 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences with no wasted words. It front-loads the action and resource, then efficiently covers what the response includes and where the id comes from. Every sentence earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple one-parameter fetch with no output schema, the description is complete: it states the input provenance, the output content, and the operation type. An agent needs no additional information to invoke the tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, and the schema already documents the id parameter thoroughly, including its return source and URL relationship. The description repeats and slightly reinforces this information but does not add meaningful new semantics beyond the schema, so the baseline of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Fetch') with a clear resource ('stored analysis') and a key identifier ('analysis id'), and it lists the returned contents (score, grade, per-dimension scores, top issues). It is clearly distinguished from siblings: analyze_website creates runs, get_analysis fetches a previous run's result, and get_leaderboard serves a different purpose.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description clearly states when to use this tool: after a previous analyze_website run, when you have an id from that run's results or from a report URL. It does not explicitly name alternatives or say when not to use it, but the context is unambiguous enough for an agent to select this tool correctly.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_leaderboardGet the leaderboardARead-onlyIdempotentInspect
Return the public WebAnalyzer leaderboard: the highest-scoring analyzed websites with their name, URL and 0-100 score, best first.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | How many entries to return (1-100). Default 20. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare the operation is read-only, idempotent, and non-destructive. The description adds useful behavioral context beyond annotations by specifying that results are public, sorted best-first, and include score fields, which covers the main return semantics an agent needs.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, focused sentence that immediately states the resource and key output characteristics. Every element earns its place with no filler or redundant phrasing.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple read-only leaderboard tool with one optional parameter and no nested objects, the description plus annotations and schema are fully sufficient. It communicates what the tool returns, the ordering, and the field composition, so an agent can invoke it correctly without missing information.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema has 100% description coverage for the single optional 'limit' parameter, including constraints and default value. The tool description does not add further parameter detail, but none is needed since the schema already fully documents it; baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool returns the public WebAnalyzer leaderboard, with specific details on what is included (website name, URL, 0-100 score) and ordering (best first). This distinguishes it from sibling tools that analyze or retrieve individual website analyses.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies use when the agent needs a high-level public ranking of analyzed websites rather than an individual site's analysis. It doesn't explicitly name alternatives or exclusions, but the 'public leaderboard' framing gives clear context for when it is appropriate.
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.
3 tool updates
- First observed
analyze_website - First observed
get_analysis - First observed
get_leaderboard
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Connectors
Free no-account URL security scan: 0-100 Launch Readiness score for any live site in ~15 seconds.
Scan any website's AI readiness: AI search visibility and AI agent usability. Free, no auth.
Scan any URL for on-page, technical & content SEO; 0-100 score with copy-paste fixes.
Scores any public website on how usable it is by AI agents, with per-check evidence.
51
Related MCP Servers
- AlicenseAqualityDmaintenancePerforms comprehensive website health audits including SSL, DNS, email authentication, performance, uptime, and broken link checks, all without requiring API keys. Returns a scored report with weighted metrics and actionable recommendations.7105MIT
- FlicenseNot gradedqualityCmaintenanceFetches any public web page and provides SEO foundation snapshots and prose readability analysis.-
- AlicenseAqualityDmaintenanceAnalyzes websites for broken links, missing meta tags, and redirect chains, returning a health score and actionable suggestions.1491MIT
- FlicenseNot gradedqualityDmaintenanceAnalyzes any webpage for SEO scores, issues, and actionable recommendations. Supports side-by-side comparison of two URLs.-
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
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.
All tool names follow the same verb_noun pattern: analyze_website, get_analysis, get_leaderboard. The verbs and nouns are clear, consistent, and predictable.
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.
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.