We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/quanticsoul4772/logic-thinking'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
proofGenerator.ts•342 B
import { LogicalSolution } from '../types.js';
/**
* Interface for proof generation systems
*/
export interface ProofGenerator<T> {
/**
* Generate a proof for the given argument
* @param argument The logical argument to prove
* @returns A logical solution with proof steps
*/
generateProof(argument: T): LogicalSolution;
}