Skip to main content
Glama
JaDi03

Browser Intelligence MCP

by JaDi03

Server Quality Checklist

67%
Profile completionA complete profile improves this server's visibility in search results.
  • Latest release: v1.0.0

  • Disambiguation5/5

    Each tool has a clear, non-overlapping purpose: take_screenshot captures visual state, scrape_page extracts content and links, and run_visual_test performs assertion-based checks. No ambiguity in usage.

    Naming Consistency5/5

    All three tools follow a consistent verb_noun pattern (take_screenshot, scrape_page, run_visual_test) with clear, descriptive verbs. Naming is uniform and predictable.

    Tool Count5/5

    With 3 tools, the set is minimal but well-scoped for a focused browser intelligence server. Each tool serves a distinct core function (capturing, extracting, testing) and earns its place without unnecessary bloat.

    Completeness4/5

    The surface covers the primary browser intelligence workflows (screenshot, scrape, and visual checks). Minor gaps exist—such as no support for full HTML extraction or waiting for dynamic content—but for the stated purpose, the coverage is solid and workable.

  • Average 3.8/5 across 3 of 3 tools scored.

    See the Tool Scores section below for per-tool breakdowns.

    • No community issues in the last 6 months
    • 5 commits in the last 12 weeks
    • No stable releases found
    • No critical vulnerability alerts
    • No high-severity vulnerability alerts
    • No code scanning findings
    • CI is passing
  • This repository is licensed under MIT License.

  • This repository includes a README.md file.

  • No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.

    Tip: use the "Try in Browser" feature on the server page to seed initial usage.

  • Add a glama.json file to provide metadata about your server.

  • If you are the author, simply .

    If the server belongs to an organization, first add glama.json to the root of your repository:

    {
      "$schema": "https://glama.ai/mcp/schemas/server.json",
      "maintainers": [
        "your-github-username"
      ]
    }

    Then . Browse examples.

  • Add related servers to improve discoverability.

How to sync the server with GitHub?

Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.

To manually sync the server, click the "Sync Server" button in the MCP server admin interface.

How is the quality score calculated?

The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).

Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.

Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).

Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.

Tool Scores

  • Behavior2/5

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

    With no annotations provided, the description must fully disclose behavioral traits. It states that the tool uses a 'real browser' (a nontrivial resource implication) and returns a pass/fail report, but it omits key details such as whether the tool is read-only, any potential side effects (e.g., network requests to the target URL), error handling (e.g., invalid URL), or timeouts. This is insufficient for an agent to predict execution consequences.

    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 two sentences with no redundant words. The first sentence front-loads the core action and scope, and the second enumerates check types and the output. Every element contributes directly to understanding the tool—no filler or filler phrases. It is exemplary in efficiency.

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

    Completeness2/5

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

    Given there is no output schema or annotations, the description must fully equip an agent to call the tool. It fails to specify the exact format of the 'checks' array (e.g., that each check needs both type and value), and the promised 'detailed pass/fail report' is not described in terms of structure or fields. The tool's complexity (nested object array, four distinct check types) demands more explicit guidance than provided.

    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?

    Schema coverage is 0%, so the description must compensate. It adds meaning to the 'checks' parameter by explaining each enum value ('has_text', 'has_element', etc.), which the schema only lists mechanically. However, it does not explain the structure of the checks array (each item requires a 'type' and a 'value'), nor does it clarify that the 'url' parameter should be a valid URI or how the value field is used per check. Thus it partially compensates but leaves structural ambiguity.

    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: running visual checks against a URL using a real browser. It enumerates the four supported check types with brief explanations, which precisely defines the resource and scope. This distinguishes it from sibling tools (take_screenshot, scrape_page) which focus on capture rather than validation, even though siblings aren't explicitly named.

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

    Usage Guidelines3/5

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

    The description implies when to use this tool (when you need to verify page content via checks) but does not explicitly contrast it with alternatives like take_screenshot or scrape_page. It provides no guidance on when NOT to use it or conditions that would favor a sibling tool. The usage context is clear from the purpose but lacks explicit routing.

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

  • Behavior4/5

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

    With no annotations, the description carries the full burden of behavioral disclosure. It discloses that it uses a 'real browser,' truncates body text to 'first 5000 chars,' caps links at 'up to 30,' and optionally uses a CSS selector for specific content. These limitations are explicit and useful. However, it does not mention error handling, wait times, or bot detection implications, which could be relevant but are not strictly necessary for basic use.

    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 primary action and output, followed by the optional selector. Every sentence contributes value, and there is no redundant phrasing. It wastes no words and is easy to parse quickly.

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

    Completeness4/5

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

    For a relatively simple scraping tool, the description covers the essential inputs, the extraction behavior, and the return content. It does not have an output schema, but the description enumerates what is returned. It omits non-critical details like timeout behavior or concurrency limits, but for most use cases the information is sufficient. Slightly more context on when to use it would push this to a 5.

    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 0%, so the description must clarify the parameters. It explains 'url' as the target to navigate and defines 'selector' as 'a CSS selector to extract a specific element's text.' This adds meaningful semantics beyond the raw schema types (string, string). It does not fully detail edge cases (e.g., invalid selector), but the core usage is clearly communicated.

    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 clear purpose: 'Navigates to a URL with a real browser and extracts structured content.' It lists the exact content items (title, meta description, body text, links) and the optional selector capability. This distinguishes it from the sibling tools take_screenshot and run_visual_test, which are visual in nature.

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

    Usage Guidelines2/5

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

    The description provides no explicit guidance on when to use this tool versus the sibling tools (take_screenshot, run_visual_test). It does not mention when not to use it, what alternatives exist, or any prerequisites like needing to scroll or handle dynamic content. The usage is only implied by the description of the extraction behavior, not stated.

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

  • Behavior4/5

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

    With no annotations provided, the description carries the full burden. It discloses that it uses a real headless browser and that the return value is a base64 string, and it explains the fullPage behavior. This is adequate transparency for a simple screenshot tool, though it does not mention potential limitations like timeouts or access restrictions.

    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?

    Two sentences with no filler. The primary action and output format are front-loaded, and the optional parameter guidance follows logically. Every word contributes meaning.

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

    Completeness4/5

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

    For a tool of this simplicity (two parameters, no output schema), the description is largely complete. It covers the return format, the fullPage option, and the general behavior. Minor omissions like error conditions or access requirements are not critical for an agent to invoke it correctly.

    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?

    Schema description coverage is 0%, so the description must compensate. It explains the fullPage parameter ('capture the entire scrollable page') but does not add detail about the 'url' parameter beyond what is obvious from the description ('any URL'). Since url is self-evident and fullPage is clarified, the description adds moderate value but does not fully cover both parameters.

    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 clear verb ('Captures'), a specific resource ('PNG screenshot of any URL'), and the return type ('base64-encoded string'). It is immediately distinct from the sibling tools (scrape_page, run_visual_test) by its explicit focus on capturing a page image.

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

    Usage Guidelines3/5

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

    The description provides clear context for what the tool does and introduces the fullPage option, but it does not explicitly compare against sibling tools or state when not to use it. The usage is implied — if you need a screenshot, use this — but no alternatives or exclusions are given.

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

GitHub Badge

Glama performs regular codebase and documentation scans to:

  • Confirm that the MCP server is working as expected.
  • Confirm that there are no obvious security issues.
  • Evaluate tool definition quality.

Our badge communicates server capabilities, safety, and installation instructions.

Card Badge

mcp-example MCP server

Copy to your README.md:

Score Badge

mcp-example MCP server

Copy to your README.md:

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/JaDi03/mcp-example'

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