We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/freqkflag/PROJECT-OVERSEER-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
/*
* Stub implementation of the overseer.infer_phases tool.
*
* Analyses a repository to propose phases based on its structure. The stub
* returns a static suggestion; real logic will inspect languages and
* frameworks.
*/
export interface InferPhasesInput {
repo_root: string;
}
export interface SuggestedPhase {
id: number;
name: string;
description: string;
deliverables: string[];
done_criteria: string[];
}
export interface InferPhasesOutput {
suggested_phases: SuggestedPhase[];
}
export async function inferPhases(args: InferPhasesInput): Promise<InferPhasesOutput> {
console.log('infer_phases called with:', args);
// TODO: implement heuristics based on repo inspection
return {
suggested_phases: [
{
id: 1,
name: 'Foundation',
description: 'Bootstrap project structure and configuration',
deliverables: ['README.md', 'PHASES.md'],
done_criteria: ['Initial docs created']
},
{
id: 2,
name: 'Core Features',
description: 'Implement core business logic',
deliverables: [],
done_criteria: []
}
]
};
}