Skip to main content
Glama

MongoDB MCP Server

Official
by mongodb-js
isObjectEmpty.ts356 B
type EmptyObject = { [x: string]: never } | null | undefined; export function isObjectEmpty(value: object | null | undefined): value is EmptyObject { if (!value) { return true; } for (const prop in value) { if (Object.prototype.hasOwnProperty.call(value, prop)) { return false; } } return true; }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/mongodb-js/mongodb-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server