We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/guangxiangdebizi/PPT-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
index.js•386 B
'use strict';
var $TypeError = require('es-errors/type');
var isArray = require('isarray');
/** @type {import('.')} */
module.exports = function safePushApply(target, source) {
if (!isArray(target)) {
throw new $TypeError('target must be an array');
}
for (var i = 0; i < source.length; i++) {
target[target.length] = source[i]; // eslint-disable-line no-param-reassign
}
};