UNPKG

@gala-chain/launchpad-mcp-server

Version:

MCP server for Gala Launchpad - 102 tools (pool management, event watchers, GSwap DEX trading, price history, token creation, wallet management, DEX pool discovery, liquidity positions, token locks, locked token queries, composite pool data, cross-chain b

17 lines 883 B
"use strict"; /** * Get Cache Info Tool * * Returns statistics about all token caches for monitoring and debugging. * Includes launchpad token metadata cache and bridgeable token cache. * Caches persist entire MCP server lifetime and accumulate data across conversations. */ Object.defineProperty(exports, "__esModule", { value: true }); exports.getCacheInfoTool = void 0; const tool_factory_js_1 = require("../../utils/tool-factory.js"); exports.getCacheInfoTool = (0, tool_factory_js_1.createNoParamTool)({ name: 'gala_launchpad_get_cache_info', description: 'Get unified cache statistics for all token caches: launchpad metadata (totalTokens, cacheSize, oldestEntry) and bridgeable tokens by network (ETHEREUM, SOLANA counts). Caches persist for the entire MCP server lifetime.', handler: (sdk) => sdk.getCacheInfo(), }); //# sourceMappingURL=getCacheInfo.js.map