We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/vyb1ng/plex-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
test-setup.js•345 B
// Global test setup
global.console = {
...console,
error: jest.fn(),
warn: jest.fn(),
log: jest.fn()
};
// Set test environment variables
process.env.PLEX_URL = 'https://test-plex-server.com:32400';
process.env.PLEX_TOKEN = 'test-token-12345';
// Mock process.env for tests that need it
beforeEach(() => {
jest.clearAllMocks();
});