We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/glassBead-tc/Thoughtbox'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
index.ts•354 B
/**
* Index Source Exports
*
* Provides different storage backends for session exports in local-first mode.
*/
// Filesystem source (primary for local deployment)
export {
FileSystemIndexSource,
type FileSystemIndexSourceOptions,
} from "./filesystem.js";
// In-memory source (for testing)
export { InMemoryIndexSource } from "./in-memory.js";