Skip to main content
Glama
AI-Zebra

Browserbase MCP Server

by AI-Zebra

Server Quality Checklist

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

  • Disambiguation4/5

    The tools are well-differentiated by their core functions (screenshot, session management, navigation, action, observation, extraction), with clear guidance on when to use each. However, there is some overlap between single-session and multi-session variants of the same action tools (e.g., browserbase_stagehand_act vs. multi_browserbase_stagehand_act_session), which could cause confusion if an agent misselects between them based on session context.

    Naming Consistency4/5

    The naming follows a consistent snake_case pattern with a clear prefix structure (browserbase_ or multi_browserbase_). Most tools use descriptive verb_noun combinations (e.g., session_create, stagehand_act). The main inconsistency is the suffix '_session' on multi-session tools, which is applied consistently within that subset but creates a slight deviation from the single-session naming.

    Tool Count5/5

    With 14 tools, the count is appropriate for a browser automation server. It covers essential operations (create, navigate, act, observe, extract, close) for both single and multi-session workflows, plus session listing and screenshot capabilities, without being overly bloated or insufficient for the domain.

    Completeness5/5

    The toolset provides comprehensive coverage for browser automation. It includes session lifecycle management (create, list, close), core browsing actions (navigate, act, observe, extract), and specialized utilities (screenshot). Both single and parallel session workflows are fully supported, with no apparent gaps in functionality for the stated purpose.

  • Average 4.2/5 across 14 of 14 tools scored. Lowest: 3.4/5.

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

    • No community issues in the last 6 months
    • 0 commits in the last 12 weeks
    • No stable releases found
    • No critical vulnerability alerts
    • No high-severity vulnerability alerts
    • No code scanning findings
    • CI status not available
  • This repository is licensed under Apache 2.0.

  • 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 carries the full burden of behavioral disclosure. It mentions the need for confidence in URL reliability but doesn't cover critical aspects like whether this is a read-only or mutative operation, potential side effects (e.g., page loading, session state changes), error handling, or performance considerations. This leaves significant gaps for a tool that interacts with a browser session.

    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 extremely concise with only two sentences, both of which are front-loaded and directly relevant. There's no wasted verbiage, and it efficiently communicates key usage guidance without unnecessary elaboration.

    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 the complexity of browser navigation (which involves session management and potential mutations), the lack of annotations, and no output schema, the description is insufficient. It doesn't explain what happens after navigation (e.g., success/failure indicators, page load events), leaving the agent with incomplete operational context.

    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 100%, so the schema already fully documents both parameters (sessionId and url). The description doesn't add any meaningful semantic context beyond what's in the schema, such as URL format requirements or sessionId constraints. This meets the baseline for high schema coverage but doesn't provide extra value.

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

    Purpose4/5

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

    The description clearly states the verb ('Navigate') and resource ('to a URL in the browser'), making the purpose immediately understandable. However, it doesn't explicitly differentiate from sibling tools like 'browserbase_stagehand_navigate' or explain what makes this 'multi_' version distinct, which prevents a perfect score.

    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 provides clear guidance on when to use it ('Only use this tool with URLs you're confident will work and stay up to date') and offers an alternative starting point ('Otherwise, use https://google.com'). However, it doesn't explicitly mention when NOT to use it versus other navigation-related siblings, which would be needed for a score of 5.

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

  • Behavior3/5

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

    With no annotations provided, the description carries full burden. It discloses that actions should be atomic and specific, and suggests using observe first if unsure. However, it doesn't mention important behavioral aspects like whether this is a read/write operation, what happens on failure, or any rate limits. The guidance about atomicity and observation is helpful but incomplete.

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

    Conciseness4/5

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

    The description is appropriately sized and front-loaded with the core purpose. The first sentence states what it does, followed by specific guidance. However, the parenthetical '(for a specific session)' at the end feels tacked on rather than integrated into the flow, and some content duplicates schema information.

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

    Completeness3/5

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

    Given 3 parameters, no annotations, and no output schema, the description provides basic guidance but lacks important context. It doesn't explain what happens after the action, what the return value might be, error conditions, or how this differs from the non-session version. For a web automation tool with session management, more behavioral context would be helpful.

    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 100%, so the schema already documents all parameters thoroughly. The description doesn't add any meaningful parameter semantics beyond what's in the schema - it repeats the same examples and guidance about atomic actions that's already in the action parameter description. Baseline 3 is appropriate when schema does the heavy lifting.

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

    Purpose4/5

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

    The description clearly states the tool 'Performs an action on a web page element' with specific examples like 'Click the sign in button' or 'Type 'hello' into the search input'. It distinguishes from siblings by specifying 'for a specific session', but doesn't explicitly differentiate from other session-based tools like multi_browserbase_stagehand_extract_session.

    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 provides clear context on when to use this tool: for atomic, specific actions on web page elements. It explicitly advises against multi-step actions like 'Order me pizza' and suggests using 'observe before using act' if unsure. However, it doesn't mention when to use alternatives like browserbase_stagehand_act (non-session version) or other session tools.

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

  • Behavior3/5

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

    No annotations are provided, so the description carries the full burden. It hints at behavioral aspects by cautioning about URL reliability and suggesting a fallback, which adds some context. However, it lacks details on potential errors, loading times, or interaction with browser state, leaving gaps in behavioral understanding for a navigation tool.

    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 front-loaded with the core action and efficiently includes usage advice in two concise sentences. Every sentence adds value without redundancy, making it easy to parse and understand quickly.

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

    Completeness3/5

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

    Given the tool's complexity (simple navigation with one parameter) and no annotations or output schema, the description is moderately complete. It covers the purpose and basic usage but lacks details on return values, error handling, or how it integrates with sibling tools, leaving some contextual gaps.

    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, with the 'url' parameter clearly documented. The description doesn't add any extra semantic details beyond what the schema provides, such as URL format requirements or examples. Baseline 3 is appropriate since the schema adequately covers the parameter.

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

    Purpose4/5

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

    The description clearly states the verb ('Navigate') and resource ('URL in the browser'), making the purpose specific and understandable. However, it doesn't explicitly differentiate from sibling tools like 'browserbase_stagehand_observe' or 'multi_browserbase_stagehand_navigate_session', which might have similar navigation functions but different scopes or contexts.

    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 provides clear context on when to use this tool ('with URLs you're confident will work and stay up to date') and offers an alternative starting point ('use https://google.com as the starting point'). However, it doesn't explicitly mention when not to use it or compare it to other navigation-related siblings, such as 'multi_browserbase_stagehand_navigate_session', which might handle multi-session scenarios.

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

  • Behavior3/5

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

    With no annotations provided, the description carries the full burden of behavioral disclosure. It explains that the tool extracts data based on instructions and a schema, and works best with clear inputs, but lacks details on potential limitations, error handling, or performance aspects like rate limits or authentication needs. It adds some context but falls short of comprehensive behavioral traits.

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

    Conciseness4/5

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

    The description is appropriately sized and front-loaded, starting with the core purpose and usage guidelines. It uses clear sentences without unnecessary fluff, though it could be slightly more concise by avoiding minor repetition (e.g., 'extract' mentioned multiple times). Overall, it efficiently conveys key information.

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

    Completeness3/5

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

    Given the tool's complexity (data extraction from web pages) and lack of annotations or output schema, the description is moderately complete. It covers purpose, usage, and input guidance but misses details on output format, error cases, or behavioral constraints. For a tool with no structured output information, more context on what to expect from results would improve completeness.

    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 100%, so the input schema already documents both parameters thoroughly. The description adds minimal value beyond the schema, such as emphasizing the importance of specific instructions, but does not provide additional syntax or format details. This meets the baseline for high schema coverage without significant enhancement.

    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 purpose with specific verbs ('extracts structured information and text content') and resources ('from the current web page'), distinguishing it from sibling tools like 'observe' for interactive elements. It explicitly mentions extraction based on instructions and a schema, making the function distinct and well-defined.

    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 guidance on when to use this tool ('when you need to get text content, data, or information from a page') and when not to ('for interactive elements... use the observe tool instead'). It also mentions alternatives by name, ensuring clear differentiation from sibling tools, which enhances agent decision-making.

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

  • Behavior3/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 behavioral traits: it's a destructive operation (closes/shuts down), performs cleanup, and terminates recording. However, it lacks details on side effects (e.g., data loss, error handling), permissions, or rate limits, which are important for a session management tool.

    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 a single, well-structured sentence that efficiently conveys the action, mechanism, and outcomes without redundancy. It is front-loaded with the core purpose ('Closes the current Browserbase session') and every part adds value, making it concise and effective.

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

    Completeness3/5

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

    Given the tool's complexity (session management with cleanup) and no annotations or output schema, the description is moderately complete. It covers the main action and effects but lacks details on return values, error conditions, or integration with sibling tools, leaving gaps for an agent to understand full behavior.

    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 input schema has 0 parameters with 100% coverage, so no parameter documentation is needed. The description appropriately adds no parameter information, focusing on the tool's action and effects. A baseline of 4 is applied as it compensates adequately for the lack of parameters by explaining the tool's purpose.

    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 specific action ('closes') and resource ('current Browserbase session'), distinguishing it from siblings like 'browserbase_session_create' (creates) and 'browserbase_screenshot' (captures). It specifies the mechanism ('properly shutting down the Stagehand instance') and outcomes ('handles browser cleanup and terminates the session recording'), making the purpose unambiguous.

    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 implies usage context by referencing 'current Browserbase session' and 'Stagehand instance', suggesting it should be used after session activities. However, it does not explicitly state when to use it versus alternatives (e.g., no guidance on if it's mandatory after each session or optional), nor does it mention prerequisites like needing an active session first.

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

  • Behavior3/5

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

    With no annotations provided, the description carries the full burden of behavioral disclosure. It effectively communicates that this is a mutation tool (performs actions) and emphasizes atomicity, but lacks details on error handling, timing, or what happens if the element isn't found. The guidance about using variables for sensitive data adds some behavioral context.

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

    Conciseness4/5

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

    The description is appropriately sized with two sentences that each serve a clear purpose: the first defines the tool's function with examples, the second provides critical usage guidance. It's front-loaded with the core purpose, though some repetition with the schema reduces efficiency.

    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 mutation tool with no annotations and no output schema, the description does a good job covering the essential context: what the tool does, when to use it, and critical constraints. It could be more complete by addressing error scenarios or response format, but given the schema's thorough parameter documentation, it's reasonably comprehensive.

    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 100%, so the schema already documents both parameters thoroughly. The description doesn't add any parameter information beyond what's in the schema - it essentially repeats the same guidance about atomic actions. This meets the baseline 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 clearly states the tool 'performs an action on a web page element' with specific examples like 'Click the sign in button' or 'Type 'hello' into the search input'. It distinguishes itself from siblings by focusing on atomic actions rather than navigation, observation, extraction, or session management.

    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 guidance on when to use this tool ('as atomic and specific as possible') and when not to use it ('AVOID actions that are more than one step'). It also references an alternative sibling tool ('If unsure, use observe before using act'), which helps the agent choose between act and observe appropriately.

    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 key behavioral traits: it extracts from the 'current web page', works best with 'clear, specific instructions' and a 'well-defined JSON schema', and ensures data is 'properly structured and usable'. It doesn't mention error handling, performance, or authentication needs, but covers core functionality well.

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

    Conciseness4/5

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

    The description is appropriately sized and front-loaded with the core purpose in the first sentence. Each subsequent sentence adds value: ideal use cases, when to use vs. alternatives, and best practices. It could be slightly more concise but remains efficient with zero waste.

    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?

    Given no annotations, no output schema, and a single parameter with full schema coverage, the description is reasonably complete. It explains what the tool does, when to use it, and best practices. It doesn't detail return values or error cases, but for a 1-param extraction tool, this is adequate.

    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 100%, so the schema already documents the 'instruction' parameter thoroughly. The description adds minimal value beyond the schema by emphasizing 'clear, specific instructions' and 'well-defined JSON schema', but doesn't provide additional syntax or format details. Baseline 3 is appropriate given 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 clearly states the tool's purpose: 'Extracts structured information and text content from the current web page based on specific instructions and a defined schema.' It uses specific verbs ('extracts', 'scraping', 'gathering', 'pulling') and distinguishes from sibling tools like 'observe' for interactive elements.

    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 explicitly states when to use this tool ('when you need to get text content, data, or information from a page') and when not to use it ('For interactive elements like buttons, forms, or clickable items, use the observe tool instead'). It provides clear alternatives and context.

    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 of behavioral disclosure. It effectively describes key behavioral traits: it returns detailed information about elements (properties, location, interaction capabilities), emphasizes that specificity improves accuracy, and positions it as a preparatory step for crafting actions. However, it lacks details on potential limitations like timeouts, error handling, or performance implications.

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

    Conciseness4/5

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

    The description is well-structured and front-loaded with core purpose and usage guidelines. Most sentences earn their place by clarifying scope, distinguishing from siblings, or explaining behavioral aspects. It could be slightly more concise by trimming repetitive emphasis on specificity, but overall it's efficient and focused.

    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?

    Given the complexity of web element observation, no annotations, and no output schema, the description does a good job covering purpose, usage, and behavioral context. It explains what the tool returns and how to use results. However, it lacks details on output format or potential edge cases, leaving some gaps for an agent to fully understand the tool's behavior.

    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 100%, providing a solid baseline. The description adds some value by reinforcing the importance of specific instructions ('The more specific your observation instruction, the more accurate the element identification will be') and framing the 'instruction' parameter as guiding the tool's 'eyes' on the page. However, it doesn't significantly expand on parameter meaning beyond what the schema already documents.

    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 purpose with specific verbs ('observes and identifies') and resources ('interactive elements on the current web page'), and explicitly distinguishes it from sibling tools by contrasting with 'extract tool' for text content extraction and positioning it as preparatory for 'act tool' actions. It defines the scope as actionable elements like buttons, links, form fields, etc.

    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 guidance on when to use this tool ('when you need to locate elements before performing actions with the act tool') and when not to use it ('DO NOT use this tool for extracting text content or data - use the extract tool instead'), directly naming alternatives. This clearly differentiates it from sibling tools like extract and act.

    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 of behavioral disclosure. It effectively describes key traits: it's a read-only observation tool (implied by 'observes and identifies'), returns detailed element information (properties, location, interaction capabilities), and performance depends on instruction specificity ('the more specific your observation instruction, the more accurate'). However, it lacks details on potential errors, rate limits, or session requirements beyond the parameter schema.

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

    Conciseness4/5

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

    The description is well-structured and front-loaded with core purpose and usage guidelines, but it includes some redundant phrasing (e.g., repeating 'specific' multiple times) and could be more concise. Sentences like 'Think of this as your 'eyes' on the page' add metaphorical clarity but are not strictly necessary, slightly reducing efficiency.

    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?

    Given the tool's moderate complexity (3 parameters, no output schema, no annotations), the description is largely complete: it clarifies purpose, usage, and behavioral traits. However, it lacks explicit mention of output format or error handling, which would be helpful for an agent invoking the tool. The absence of an output schema means the description could better address what 'detailed information' entails.

    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 100%, so the schema already documents all three parameters thoroughly. The description adds minimal value beyond the schema, only reinforcing the importance of specificity for the 'instruction' parameter ('The more specific your observation instruction, the more accurate the element identification will be'). It does not explain parameter interactions or provide additional context, meeting the baseline 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 clearly states the tool's purpose with specific verbs ('observes and identifies') and resources ('interactive elements on the current web page'), explicitly distinguishing it from sibling tools like 'extract' for text content and positioning it as preparatory for the 'act' tool. It provides concrete examples of actionable elements (buttons, links, form fields) that differentiate its scope from other observation or extraction tools.

    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 explicitly states when to use this tool ('when you need to locate elements before performing actions with the act tool') and when not to use it ('DO NOT use this tool for extracting text content or data - use the extract tool instead'), providing clear alternatives. It also implies usage context by mentioning it returns information for 'crafting precise actions,' guiding the agent on its role in a workflow.

    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 of behavioral disclosure. It effectively describes key behaviors: creates an isolated session with independent cookies, authentication, and state, and implies it's a creation/mutation operation. However, it lacks details on error handling, performance implications, or session lifecycle management, which would be helpful for a tool with no annotation coverage.

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

    Conciseness4/5

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

    The description is well-structured and front-loaded with the core purpose. It uses bullet-like examples efficiently but could be slightly more concise by combining some phrases (e.g., 'parallel data scraping, concurrent automation, A/B testing...' is a bit lengthy). Overall, most sentences earn their place by adding value.

    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?

    Given no annotations, no output schema, and 2 parameters with full schema coverage, the description does a good job covering the tool's context. It explains the tool's role in multi-session workflows and pairing requirements. However, it could benefit from mentioning what the tool returns (e.g., a session ID) since there's no output schema, leaving a minor gap.

    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 100%, so the schema already documents both parameters thoroughly. The description does not add any parameter-specific information beyond what's in the schema (e.g., it doesn't explain 'name' or 'browserbaseSessionID' further). Baseline 3 is appropriate when the schema does the heavy lifting.

    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 purpose: 'Create parallel browser session for multi-session workflows.' It specifies the verb ('create'), resource ('parallel browser session'), and distinguishes it from sibling tools by emphasizing multi-session capabilities versus single-session alternatives like 'browserbase_session_create'.

    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 guidance on when to use this tool: 'Use this when you need multiple browser instances running simultaneously' and lists specific scenarios (e.g., parallel data scraping, A/B testing). It also distinguishes from alternatives by noting it's 'Perfect for scaling automation tasks' and advises to 'Always pair with session-specific tools (those ending with '_session').'

    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 of behavioral disclosure. It effectively describes key behaviors: it creates or reuses sessions based on sessionId parameter, initializes Stagehand with configuration flags (proxies, stealth, viewport, cookies), and updates the active session. The WARNING about single-browser-only usage is particularly valuable behavioral context.

    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 efficiently structured with zero waste. The first sentence establishes the core purpose, the second provides critical warnings and alternatives, and the third adds implementation details. Every sentence earns its place and the warning is appropriately front-loaded for immediate visibility.

    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?

    Given the tool's complexity (session management with Stagehand initialization) and no annotations or output schema, the description does well at covering key aspects: purpose, usage constraints, behavioral traits, and parameter implications. It could benefit from mentioning what 'updates the active session' means operationally, but overall provides substantial context for a tool with significant behavioral implications.

    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 schema description coverage is 100% (the single parameter 'sessionId' is fully documented in the schema). The description adds some context by mentioning 'If not provided or invalid, a new session is created,' which reinforces the schema's documentation. However, it doesn't provide significant additional parameter semantics beyond what the schema already covers.

    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 specific action ('Create or reuse a single cloud browser session') with the resource ('Browserbase with fully initialized Stagehand'). It explicitly distinguishes this tool from its sibling 'multi_browserbase_stagehand_session_create' by emphasizing it's for SINGLE browser workflows only, providing clear differentiation.

    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 guidance on when to use this tool ('for SINGLE browser workflows only') and when not to use it ('If you need multiple browser sessions running simultaneously... use 'multi_browserbase_stagehand_session_create' instead'). It names the specific alternative tool and describes the appropriate context for each.

    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?

    No annotations are provided, so the description carries the full burden of behavioral disclosure. It effectively describes the tool's behavior: it lists active sessions with specific attributes (IDs, names, ages, Browserbase session IDs) and is essential for monitoring, debugging, and resource management. However, it lacks details on potential limitations like rate limits, error conditions, or performance implications, which would be helpful for a tool used 'frequently' in complex scenarios.

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

    Conciseness4/5

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

    The description is appropriately sized and front-loaded, starting with a critical warning ('ONLY WORKS WITH MULTI-SESSION TOOLS!') followed by the core purpose. Each sentence adds value, such as detailing what it shows and when to use it. However, it includes some redundancy (e.g., 'Critical tool' and 'Essential') and could be slightly more streamlined without losing key information.

    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?

    Given the tool's complexity (multi-session management), lack of annotations, and no output schema, the description does a good job of explaining its role and importance. It covers purpose, usage guidelines, and behavioral context adequately. However, it could be more complete by specifying the output format or example return values, which would help the agent understand what to expect, especially since there's no output schema provided.

    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 0 parameters, and schema description coverage is 100%, so no parameter information is needed. The description does not mention any parameters, which is appropriate. A baseline score of 4 is given as it compensates well for the lack of parameters by focusing on usage context, though it could slightly improve by explicitly stating 'no parameters required' for clarity.

    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 purpose: 'Track all parallel sessions' and 'Shows all active browser sessions with their IDs, names, ages, and Browserbase session IDs.' It uses specific verbs ('track,' 'shows') and resources ('parallel sessions,' 'active browser sessions'), and distinguishes itself from sibling tools by emphasizing its role in multi-session management, unlike single-session tools like browserbase_screenshot or session-specific tools.

    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 guidance on when to use this tool: 'ONLY WORKS WITH MULTI-SESSION TOOLS!' and 'Use this frequently to monitor your parallel automation workflows, verify sessions are running, and get session IDs for session-specific tools.' It also implies alternatives by referencing 'session-specific tools' and highlights its critical role in 'multi-session management,' making it clear when it should be used versus other tools.

    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 of behavioral disclosure. It effectively communicates the tool's purpose (capturing visual state) and context (browser control with Stagehand), though it doesn't mention potential side effects like performance impact or file storage behavior. No contradiction with annotations 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 perfectly concise with three sentences that each earn their place: the core function, the primary use case, and the usage restriction. It's front-loaded with the essential information and wastes no words.

    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 single-parameter tool with no annotations and no output schema, the description provides excellent context about purpose and usage guidelines. It could potentially mention what the screenshot returns (e.g., image data or file path), but given the tool's simplicity and clear behavioral context, it's mostly complete.

    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 has 100% description coverage for its single parameter, so the baseline is 3. The description doesn't add specific parameter information, but it provides valuable context about when and why to use the tool, which indirectly informs parameter usage. This elevates it above the baseline.

    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 specific action ('takes a screenshot') and resource ('of the current page'), distinguishing it from siblings like navigation or extraction tools. It provides a precise verb+resource combination that leaves no ambiguity about what the tool does.

    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 explicitly states when to use this tool ('to learn where you are on the page when controlling the browser with Stagehand') and when not to use it ('Only use this tool when the other tools are not sufficient to get the information you need'). This provides clear guidance about its specific context and alternatives.

    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 of behavioral disclosure. It effectively describes critical behavioral traits: the tool performs a destructive operation (terminates and frees resources), has irreversible consequences ('once closed, the session cannot be recovered'), and addresses cost implications ('billing charges', 'consuming resources'). It doesn't cover rate limits or auth needs, but given the context, this is sufficient for a high score.

    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 appropriately sized and front-loaded, with every sentence adding value. The first sentence states the purpose, the second explains the action, and the remaining sentences provide critical usage guidelines and warnings, with no wasted words.

    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?

    Given the tool's complexity (destructive operation with cost implications), no annotations, and no output schema, the description does well by covering purpose, usage, and behavioral risks. However, it doesn't specify the return value or error conditions, which leaves a minor gap in completeness for a tool with such significant consequences.

    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 input schema has 100% description coverage, so the baseline is 3. The description adds meaningful context beyond the schema by emphasizing the importance of the sessionId parameter ('Double-check this ID') and referencing where to obtain it ('get from multi_browserbase_stagehand_session_list'), which enhances understanding without redundancy.

    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 purpose with specific verbs ('cleanup', 'terminates', 'ends', 'frees') and resources ('parallel session', 'browser session', 'Browserbase session', 'cloud resources'). It distinguishes from siblings by focusing on cleanup for multi-session workflows, unlike session creation or action tools in the sibling list.

    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 guidance on when to use this tool ('Always use this when finished with a session') and why ('to avoid resource waste and billing charges'). It also implies alternatives by referencing 'multi_browserbase_stagehand_session_list' for getting session IDs, though it doesn't explicitly name when-not-to-use scenarios, the 'always use' directive is strong enough for full credit.

    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-server-browserbase MCP server

Copy to your README.md:

Score Badge

mcp-server-browserbase 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/AI-Zebra/mcp-server-browserbase'

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