We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/nrwl/nx-console'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
merge-arrays.ts•274 B
/**
* Combines the second array with the first array, without having to loop or change the reference of the first array.
* @param arr1
* @param arr2
*/
export function mergeArrays(arr1: Array<unknown>, arr2: Array<unknown>) {
Array.prototype.push.apply(arr1, arr2);
}