Skip to main content
Glama

mcp-appstore

by appreply-co
throttle.js733 B
"use strict"; var callable = require("es5-ext/object/valid-callable") , validTimeout = require("./valid-timeout") , apply = Function.prototype.apply; module.exports = function (fn, timeout) { var isScheduled = false, context, args, run; callable(fn); timeout = validTimeout(timeout); run = function () { var currentContext = context, currentArgs = args; if (!args) { isScheduled = false; return; } context = null; args = null; setTimeout(run, timeout); apply.call(fn, currentContext, currentArgs); }; return function () { if (isScheduled) { context = this; args = arguments; return; } isScheduled = true; setTimeout(run, timeout); apply.call(fn, this, 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