We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/bgauryy/local-explorer-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
setup.ts•213 B
/**
* Test setup and global configuration
*/
import { beforeAll, afterAll } from 'vitest';
beforeAll(() => {
// Set up test environment
process.env.DEBUG = 'false';
});
afterAll(() => {
// Clean up
});