We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/docleaai/doclea-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
/**
* Staleness Detection Strategies
*
* Exports all strategy implementations.
*/
export {
BaseStalenessStrategy,
type IStalenessStrategy,
type StrategyContext,
} from "./base";
export {
GitChangesStrategy,
type GitChangesStrategyContext,
} from "./git-changes";
export {
RelatedUpdatesStrategy,
type RelatedUpdatesStrategyContext,
} from "./related-updates";
export {
SupersededStrategy,
type SupersededStrategyContext,
} from "./superseded";
export { TimeDecayStrategy } from "./time-decay";