We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/iceener/files-stdio-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
setup.ts•318 B
/**
* Test setup - must be imported before any other modules.
* Sets up environment variables for testing.
*/
import path from 'node:path';
// Set FS_ROOT before any other imports
const FIXTURES_PATH = path.resolve(import.meta.dir, 'fixtures');
process.env['FS_ROOT'] = FIXTURES_PATH;
export { FIXTURES_PATH };