Skip to main content
Glama
clusslin

browser-console-mcp-tools

by clusslin

get_console_errors

Fetch browser console error messages with stack traces to diagnose and fix web app issues.

Instructions

Get only error messages from the browser console. Returns detailed error information including stack traces.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of errors to return (default: 20)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.5/5.0
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 usefully discloses that output is detailed and includes stack traces (a return-behavior detail that matters without an output schema), but says nothing about the limit default's effect, persistence of errors, or any auth/permission requirements.

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?

Two short sentences, front-loaded with the core purpose and followed by the salient return detail. No wasted words, though it is minimal rather than elegantly structured.

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 simple read tool with one optional parameter and no output schema, the description covers what the tool does and what it returns. Missing only minor operational context such as how the limit interacts with results.

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 single 'limit' parameter is already documented in the schema. The description adds no syntax, format, or behavioral detail beyond that baseline.

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?

States a specific verb ('Get') and resource ('error messages from the browser console'), and the qualifier 'only' differentiates it from get_console_messages without naming it. The purpose is instantly legible, though the sibling differentiation is implied rather than explicit.

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 phrase 'only error messages' implies the use case (want errors without other console noise), but there is no explicit when-to-use, when-not-to-use, or named alternative. Usage must be inferred from the sibling names.

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