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
// @lifecycle canonical - Exports for server-side hook system.
/**
* Server-side Hook System
*
* Provides extensible hooks for pipeline stages, gate evaluation, and chain execution.
*
* Usage:
* ```typescript
* import { HookRegistry, PipelineHooks } from './hooks/index.js';
*
* const registry = new HookRegistry(logger);
* registry.registerPipelineHooks({
* onBeforeStage: async (stage, ctx) => console.log(`Starting ${stage}`),
* });
* ```
*/
export type {
ChainHooks,
GateEvaluationResult,
GateHooks,
HookExecutionContext,
PipelineHooks,
} from './hook-registry.js';
export { HookRegistry } from './hook-registry.js';