Skip to main content
Glama
by Ritesh-sudo
index.js642 B
'use strict'; var isObject = require('is-extendable'); var forIn = require('for-in'); function mixin(target, objects) { if (!isObject(target)) { throw new TypeError('mixin-object expects the first argument to be an object.'); } var len = arguments.length, i = 0; while (++i < len) { var obj = arguments[i]; if (isObject(obj)) { forIn(obj, copy, target); } } return target; } /** * copy properties from the source object to the * target object. * * @param {*} `value` * @param {String} `key` */ function copy(value, key) { this[key] = value; } /** * Expose `mixin` */ module.exports = mixin;

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/Ritesh-sudo/MCPJobSearch'

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