Skip to main content
Glama
clusslin

browser-console-mcp-tools

by clusslin

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault

No arguments

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{}
resources
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
get_console_messagesB

Get browser console messages. Filter by type (error, warn, log, info, debug) and limit the number of messages returned.

get_console_errorsA

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

clear_console_messagesB

Clear all stored console messages.

get_console_statsB

Get statistics about console messages (counts by type, recent activity).

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription
All Console MessagesAll captured console messages from the browser
Console ErrorsOnly error messages from the browser console
Console StatisticsStatistics about captured console messages

TDQS

A3.6/5.0

Scored across 4 tools

Disambiguation4/5

get_console_messages and get_console_errors overlap since errors are a subset of messages filterable by type='error', but the errors tool adds distinct value (stack traces, detailed error info), so the boundary is defensible. clear_console_messages and get_console_stats are clearly distinct.

Naming Consistency5/5

All four tools follow a consistent snake_case verb_noun pattern (get_, get_, clear_, get_). The convention is predictable and readable throughout.

Tool Count5/5

Four tools is well-scoped for a browser console inspection purpose: two retrieval variants, one clear, one stats. Each earns its place with no bloat.

Completeness4/5

Read, filtered read, clear, and stats cover the core console lifecycle. Minor gap: no way to wait/subscribe for new messages or export logs, but agents can poll existing tools to work around this.