We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/block/vscode-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
setup.ts•252 B
// This file is used for any global test setup
import { vi } from 'vitest'
// Set up global mocks here if needed
global.console = {
...console,
// You can modify logging behavior for tests here
log: vi.fn(),
error: vi.fn(),
warn: vi.fn(),
}