We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/WilcoKruijer/bunq-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
{
"compilerOptions": {
// Enable latest features
"lib": ["ESNext"],
"target": "ESNext",
"module": "ESNext",
"moduleDetection": "force",
"jsx": "react-jsx",
"allowJs": false,
// Bundler mode
"moduleResolution": "bundler",
"verbatimModuleSyntax": true,
"allowImportingTsExtensions": true,
// Project reference specific settings
"composite": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"rewriteRelativeImportExtensions": true,
"emitDeclarationOnly": false,
"isolatedDeclarations": false,
"isolatedModules": true,
// Best practices
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
// Some stricter flags
"noUnusedLocals": true,
"noUnusedParameters": true,
"noPropertyAccessFromIndexSignature": true,
// Misc
"esModuleInterop": true
}
}