We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/GustavoGomez092/proto-blocks-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
// src/middleware/pretty-json/index.ts
var prettyJSON = (options) => {
const targetQuery = options?.query ?? "pretty";
return async function prettyJSON2(c, next) {
const pretty = options?.force || c.req.query(targetQuery) || c.req.query(targetQuery) === "";
await next();
if (pretty && c.res.headers.get("Content-Type")?.startsWith("application/json")) {
const obj = await c.res.json();
c.res = new Response(JSON.stringify(obj, null, options?.space ?? 2), c.res);
}
};
};
export {
prettyJSON
};