Skip to main content
Glama
index.ts655 B
export * from './ToolManager.js'; export * from './FastMCPAdapter.js'; export * from './ContentCacheAdapter.js'; // Add the async-mutex package for fallback concurrency protection if using worker threads export const getMutex = async () => { try { // Try to import async-mutex const { Mutex } = await import('async-mutex'); return new Mutex(); } catch (error) { // Return a simple fallback if the package is not available return { acquire: async () => { // Simple mutex implementation const release = () => {}; // No-op since we're not actually locking anything return release; } }; } };

Latest Blog Posts

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/flight505/mcp-think-tank'

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