We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mikeysrecipes/bilibili-mcp-js'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
{
"compilerOptions": {
"outDir": "./dist",
// Enable latest features
"lib": ["ESNext", "DOM"],
"target": "ES2020",
"module": "Node16",
"moduleDetection": "force",
"jsx": "react-jsx",
"allowJs": true,
// Bundler mode
"moduleResolution": "Node16",
"allowImportingTsExtensions": false,
"verbatimModuleSyntax": true,
"noEmit": false,
// Best practices
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
// Some stricter flags (disabled by default)
"noUnusedLocals": false,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false
},
"include": ["*.ts", "src/**/*"],
"exclude": ["node_modules"]
}