We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/systeminit/si'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
willTimeout.ts•513 B
// deno-lint-ignore-file
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-nocheck
async function main() {
console.log("yeehaw this is gonna explode!");
// Just sleep for a very long time - timeout will kill it before this completes
// eslint-disable-next-line no-promise-executor-return, arrow-parens
await new Promise((r) => setTimeout(r, 60000));
// eslint-disable-next-line no-autofix/no-unreachable
console.log("this should be impossible to hit");
return { status: "ok" };
}