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
planProject.ts•863 B
/*
* Stub implementation of the overseer.plan_project tool.
*
* This function is a placeholder that logs its input and returns a minimal
* response. In later phases it will inspect the repository, read the
* sentinel.yml configuration and generate PHASES.md and PHASE-01.md files.
*/
export interface PlanProjectInput {
repo_root: string;
project_name: string;
project_summary: string;
overwrite_existing?: boolean;
}
export interface PlanProjectOutput {
status: string;
message: string;
phases_file?: string;
initial_phases?: any[];
}
export async function planProject(args: PlanProjectInput): Promise<PlanProjectOutput> {
console.log('plan_project called with:', args);
// TODO: implement logic to generate PHASES.md and PHASE-01.md
return {
status: 'not_implemented',
message: 'plan_project is not implemented yet'
};
}