We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Southclaws/storyden'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import "@testing-library/jest-dom/vitest";
import { cleanup } from "@testing-library/react";
import { afterEach } from "vitest";
if (typeof window !== "undefined" && !(window as any).__storyden__) {
(window as any).__storyden__ = {
API_ADDRESS: "http://localhost:8000",
WEB_ADDRESS: "http://localhost:3000",
source: "script",
};
}
afterEach(() => {
cleanup();
});
if (typeof globalThis.ResizeObserver === "undefined") {
class ResizeObserver {
observe() {}
unobserve() {}
disconnect() {}
}
globalThis.ResizeObserver = ResizeObserver as typeof globalThis.ResizeObserver;
}
if (typeof document.execCommand !== "function") {
(document as Document & { execCommand?: typeof document.execCommand }).execCommand =
() => false;
}