Skip to main content
Glama

mcp-appstore

by appreply-co
without.js798 B
var _contains = require('./internal/_contains'); var _curry2 = require('./internal/_curry2'); var flip = require('./flip'); var reject = require('./reject'); /** * Returns a new list without values in the first argument. * `R.equals` is used to determine equality. * * Acts as a transducer if a transformer is given in list position. * * @func * @memberOf R * @since v0.19.0 * @category List * @sig [a] -> [a] -> [a] * @param {Array} list1 The values to be removed from `list2`. * @param {Array} list2 The array to remove values from. * @return {Array} The new array without values in `list1`. * @see R.transduce * @example * * R.without([1, 2], [1, 2, 1, 3, 4]); //=> [3, 4] */ module.exports = _curry2(function(xs, list) { return reject(flip(_contains)(xs), list); });

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/appreply-co/mcp-appstore'

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