Skip to main content
Glama

mcp-appstore

by appreply-co
_xdropRepeatsWith.js931 B
var _curry2 = require('./_curry2'); module.exports = (function() { function XDropRepeatsWith(pred, xf) { this.xf = xf; this.pred = pred; this.lastValue = undefined; this.seenFirstValue = false; } XDropRepeatsWith.prototype['@@transducer/init'] = function() { return this.xf['@@transducer/init'](); }; XDropRepeatsWith.prototype['@@transducer/result'] = function(result) { return this.xf['@@transducer/result'](result); }; XDropRepeatsWith.prototype['@@transducer/step'] = function(result, input) { var sameAsLast = false; if (!this.seenFirstValue) { this.seenFirstValue = true; } else if (this.pred(this.lastValue, input)) { sameAsLast = true; } this.lastValue = input; return sameAsLast ? result : this.xf['@@transducer/step'](result, input); }; return _curry2(function _xdropRepeatsWith(pred, xf) { return new XDropRepeatsWith(pred, xf); }); }());

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