We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/debugmcpdev/mcp-debugger'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
tsconfig.test.json•675 B
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"rootDir": "../..",
"outDir": "./build",
"module": "NodeNext", // Ensure this is compatible with your Node version and package.json type
"moduleResolution": "NodeNext",
"skipLibCheck": true, // Already in main, but good to have
"esModuleInterop": true, // Already in main
"resolveJsonModule": true, // Already in main
"allowSyntheticDefaultImports": true // Already in main
// No need to repeat "target", "strict", etc. as they are inherited
},
"include": [
"./**/*.ts",
"../../src/**/*.ts"
],
"exclude": [
"../../node_modules",
"../../build"
]
}