Skip to main content
Glama

MCP Browser Screenshot Server

fr.jsโ€ข4.67 kB
import * as util from "../core/util.js"; const error = () => { const Sizable = { string: { unit: "caractรจres", verb: "avoir" }, file: { unit: "octets", verb: "avoir" }, array: { unit: "รฉlรฉments", verb: "avoir" }, set: { unit: "รฉlรฉments", verb: "avoir" }, }; function getSizing(origin) { return Sizable[origin] ?? null; } const parsedType = (data) => { const t = typeof data; switch (t) { case "number": { return Number.isNaN(data) ? "NaN" : "nombre"; } case "object": { if (Array.isArray(data)) { return "tableau"; } if (data === null) { return "null"; } if (Object.getPrototypeOf(data) !== Object.prototype && data.constructor) { return data.constructor.name; } } } return t; }; const Nouns = { regex: "entrรฉe", email: "adresse e-mail", url: "URL", emoji: "emoji", uuid: "UUID", uuidv4: "UUIDv4", uuidv6: "UUIDv6", nanoid: "nanoid", guid: "GUID", cuid: "cuid", cuid2: "cuid2", ulid: "ULID", xid: "XID", ksuid: "KSUID", datetime: "date et heure ISO", date: "date ISO", time: "heure ISO", duration: "durรฉe ISO", ipv4: "adresse IPv4", ipv6: "adresse IPv6", cidrv4: "plage IPv4", cidrv6: "plage IPv6", base64: "chaรฎne encodรฉe en base64", base64url: "chaรฎne encodรฉe en base64url", json_string: "chaรฎne JSON", e164: "numรฉro E.164", jwt: "JWT", template_literal: "entrรฉe", }; return (issue) => { switch (issue.code) { case "invalid_type": return `Entrรฉe invalide : ${issue.expected} attendu, ${parsedType(issue.input)} reรงu`; case "invalid_value": if (issue.values.length === 1) return `Entrรฉe invalide : ${util.stringifyPrimitive(issue.values[0])} attendu`; return `Option invalide : une valeur parmi ${util.joinValues(issue.values, "|")} attendue`; case "too_big": { const adj = issue.inclusive ? "<=" : "<"; const sizing = getSizing(issue.origin); if (sizing) return `Trop grand : ${issue.origin ?? "valeur"} doit ${sizing.verb} ${adj}${issue.maximum.toString()} ${sizing.unit ?? "รฉlรฉment(s)"}`; return `Trop grand : ${issue.origin ?? "valeur"} doit รชtre ${adj}${issue.maximum.toString()}`; } case "too_small": { const adj = issue.inclusive ? ">=" : ">"; const sizing = getSizing(issue.origin); if (sizing) { return `Trop petit : ${issue.origin} doit ${sizing.verb} ${adj}${issue.minimum.toString()} ${sizing.unit}`; } return `Trop petit : ${issue.origin} doit รชtre ${adj}${issue.minimum.toString()}`; } case "invalid_format": { const _issue = issue; if (_issue.format === "starts_with") return `Chaรฎne invalide : doit commencer par "${_issue.prefix}"`; if (_issue.format === "ends_with") return `Chaรฎne invalide : doit se terminer par "${_issue.suffix}"`; if (_issue.format === "includes") return `Chaรฎne invalide : doit inclure "${_issue.includes}"`; if (_issue.format === "regex") return `Chaรฎne invalide : doit correspondre au modรจle ${_issue.pattern}`; return `${Nouns[_issue.format] ?? issue.format} invalide`; } case "not_multiple_of": return `Nombre invalide : doit รชtre un multiple de ${issue.divisor}`; case "unrecognized_keys": return `Clรฉ${issue.keys.length > 1 ? "s" : ""} non reconnue${issue.keys.length > 1 ? "s" : ""} : ${util.joinValues(issue.keys, ", ")}`; case "invalid_key": return `Clรฉ invalide dans ${issue.origin}`; case "invalid_union": return "Entrรฉe invalide"; case "invalid_element": return `Valeur invalide dans ${issue.origin}`; default: return `Entrรฉe invalide`; } }; }; export default function () { return { localeError: error(), }; }

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