Skip to main content
Glama

mcp-appstore

by appreply-co
_xtake.js622 B
var _curry2 = require('./_curry2'); var _reduced = require('./_reduced'); var _xfBase = require('./_xfBase'); module.exports = (function() { function XTake(n, xf) { this.xf = xf; this.n = n; } XTake.prototype['@@transducer/init'] = _xfBase.init; XTake.prototype['@@transducer/result'] = _xfBase.result; XTake.prototype['@@transducer/step'] = function(result, input) { if (this.n === 0) { return _reduced(result); } else { this.n -= 1; return this.xf['@@transducer/step'](result, input); } }; return _curry2(function _xtake(n, xf) { return new XTake(n, 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