Skip to main content
Glama
removeObjectKeys.ts252 B
export const removeObjectKeys = < T extends Record<string, unknown>, K extends (keyof T)[], >( obj: T, keys: K ): Omit<T, K[number]> => { const result = { ...obj }; for (const key of keys) { delete result[key]; } return result; };

Latest Blog Posts

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/aymericzip/intlayer'

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