Skip to main content
Glama

getNetworkErrors

Retrieve network error logs from browser sessions to identify and troubleshoot connectivity issues, failed requests, and HTTP errors during web interactions.

Instructions

Check our network ERROR logs

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • Handler and registration for the 'getNetworkErrors' MCP tool. Fetches network error logs from the browser connector server at '/network-errors' endpoint using the discovered host/port, stringifies the JSON response, and marks it as an error.
    server.tool("getNetworkErrors", "Check our network ERROR logs", async () => { return await withServerConnection(async () => { const response = await fetch( `http://${discoveredHost}:${discoveredPort}/network-errors` ); const json = await response.json(); return { content: [ { type: "text", text: JSON.stringify(json, null, 2), }, ], isError: true, }; }); });

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/oenius/browser-tools-mcp'

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