We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/cyanheads/clinicaltrialsgov-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
{
"extends": "./tsconfig.json",
"compilerOptions": {
// Scripts don't need to emit code - they run directly with bun/tsx
"noEmit": true,
// Incremental compilation for faster type checking
"incremental": true,
"tsBuildInfoFile": ".tsbuildinfo.scripts",
// Scripts may use console directly and have relaxed rules
"noUnusedLocals": false,
"noUnusedParameters": false,
// Allow more flexibility for script imports (Bun handles ESM/CJS interop)
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true
},
"include": ["scripts/**/*.ts"],
"exclude": ["node_modules", "dist"]
}