Skip to main content
Glama

getNetworkLogs

Capture and analyze browser network traffic data for monitoring and debugging web applications through Chrome extension integration.

Instructions

Check ALL our network logs

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The core handler implementation for the 'getNetworkLogs' MCP tool. It registers the tool and defines its execution logic: ensures server connection via 'withServerConnection', fetches network success logs from the browser connector server endpoint '/network-success', parses the JSON response, and returns it formatted as a text content block.
    server.tool("getNetworkLogs", "Check ALL our network logs", async () => { return await withServerConnection(async () => { const response = await fetch( `http://${discoveredHost}:${discoveredPort}/network-success` ); const json = await response.json(); return { content: [ { type: "text", text: JSON.stringify(json, null, 2), }, ], }; }); });

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/Sugatraj/Cursor-Browser-Tools-MCP'

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