Skip to main content
Glama

MCP Browser Screenshot Server

cacheWrapper.jsโ€ข612 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.cacheWrapper = cacheWrapper; exports.cacheWrapperSync = cacheWrapperSync; async function cacheWrapper(cache, key, fn) { const cached = cache.get(key); if (cached !== undefined) { return cached; } const result = await fn(); cache.set(key, result); return result; } function cacheWrapperSync(cache, key, fn) { const cached = cache.get(key); if (cached !== undefined) { return cached; } const result = fn(); cache.set(key, result); return result; } //# sourceMappingURL=cacheWrapper.js.map

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/seabassgonzalez/mcp-browser-screenshot'

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