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
/**
* Shell Verification Gates Module
*
* Exports types and services for shell-based verification gates
* that enable ground-truth validation via command execution.
*/
export type { ShellVerifyGate, ShellVerifyResult, PendingShellVerification, ShellVerifyExecutorConfig, VerifyActiveState, } from './types.js';
export { SHELL_OUTPUT_MAX_CHARS, SHELL_VERIFY_DEFAULT_MAX_ITERATIONS } from './types.js';
export { ShellVerifyExecutor, createShellVerifyExecutor, getDefaultShellVerifyExecutor, resetDefaultShellVerifyExecutor, } from './shell-verify-executor.js';