We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/psikosen/dt_mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
index.d.ts•427 B
/**
Returns `true` if the given `moduleName` is a Node.js builtin module, `false` otherwise.
@param moduleName - The name of the module.
@example
```
import isBuiltinModule = require('is-builtin-module');
isBuiltinModule('fs/promises');
//=> true
isBuiltinModule('node:fs');
//=> true
isBuiltinModule('unicorn');
//=> false
```
*/
declare function isBuiltinModule(moduleName: string): boolean;
export = isBuiltinModule;