We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/parmarjh/mcp-reasoner'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import { ThoughtNode, ReasoningRequest, ReasoningResponse } from '../types.js';
import { BaseStrategy } from './base.js';
export declare class BeamSearchStrategy extends BaseStrategy {
private beamWidth;
private beams;
constructor(stateManager: any, beamWidth?: 3);
processThought(request: ReasoningRequest): Promise<ReasoningResponse>;
private calculatePossiblePaths;
getBestPath(): Promise<ThoughtNode[]>;
getMetrics(): Promise<any>;
clear(): Promise<void>;
}