Skip to main content
Glama

mcp-appstore

by appreply-co
pluck.js697 B
var _curry2 = require('./internal/_curry2'); var map = require('./map'); var prop = require('./prop'); /** * Returns a new list by plucking the same named property off all objects in * the list supplied. * * @func * @memberOf R * @since v0.1.0 * @category List * @sig k -> [{k: v}] -> [v] * @param {Number|String} key The key name to pluck off of each object. * @param {Array} list The array to consider. * @return {Array} The list of values for the given key. * @see R.props * @example * * R.pluck('a')([{a: 1}, {a: 2}]); //=> [1, 2] * R.pluck(0)([[1, 2], [3, 4]]); //=> [1, 3] */ module.exports = _curry2(function pluck(p, list) { return map(prop(p), 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