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 MCP notification system.
/**
* MCP Notification System
*
* Provides notification emission for gate, framework, and chain events.
*
* Usage:
* ```typescript
* import { McpNotificationEmitter } from './notifications/index.js';
*
* const emitter = new McpNotificationEmitter(logger);
* emitter.setServer(mcpServer);
*
* emitter.emitGateFailed({ gateId: 'code-quality', reason: 'Criteria not met' });
* ```
*/
export type {
ChainCompleteNotification,
ChainStepCompleteNotification,
FrameworkChangedNotification,
GateFailedNotification,
McpNotificationServer,
ResponseBlockedNotification,
RetryExhaustedNotification,
} from './mcp-notification-emitter.js';
export { McpNotificationEmitter } from './mcp-notification-emitter.js';