Skip to main content
Glama

mcp-appstore

by appreply-co
compose.js796 B
var pipe = require('./pipe'); var reverse = require('./reverse'); /** * Performs right-to-left function composition. The rightmost function may have * any arity; the remaining functions must be unary. * * **Note:** The result of compose is not automatically curried. * * @func * @memberOf R * @since v0.1.0 * @category Function * @sig ((y -> z), (x -> y), ..., (o -> p), ((a, b, ..., n) -> o)) -> ((a, b, ..., n) -> z) * @param {...Function} functions * @return {Function} * @see R.pipe * @example * * var f = R.compose(R.inc, R.negate, Math.pow); * * f(3, 4); // -(3^4) + 1 */ module.exports = function compose() { if (arguments.length === 0) { throw new Error('compose requires at least one argument'); } return pipe.apply(this, reverse(arguments)); };

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