We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/minipuft/claude-prompts-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
claude-code-cache-hot-reload.d.ts•869 B
/**
* Claude Code Cache Hot Reload Integration
*
* Registers an auxiliary reload handler that triggers the Claude Code
* hooks cache refresh whenever prompts or gates change in the MCP server.
*
* Uses native TypeScript cache generator (no external Python dependency).
*/
import type { Logger } from '../logging/index.js';
import type { AuxiliaryReloadConfig } from '../prompts/hot-reload-manager.js';
/**
* Build auxiliary reload config for Claude Code cache refresh.
* Watches prompts and gates directories and triggers cache refresh on changes.
*/
export declare function buildClaudeCodeCacheAuxiliaryReloadConfig(logger: Logger, serverRoot: string): AuxiliaryReloadConfig;
/**
* Generate cache on startup.
* Called during application initialization.
*/
export declare function generateCacheOnStartup(logger: Logger, serverRoot: string): Promise<void>;