* wip: replace tool parameter inputs with root directory paths * fix: moved path resolving responsibility to tools - made path in parameters to optional for AI - internalised path resolving using session roots * chore: update package-lock.json * chore: fix regressions and fix CI * fix: make projectRoot required * fix: add-task tool * fix: updateTask tool * fix: remove reportProgress * chore: cleanup * fix: expand-task tool * chore: remove usless logs * fix: dependency manager logging in mcp server
90 lines
2.4 KiB
JavaScript
90 lines
2.4 KiB
JavaScript
/**
|
|
* tools/complexity-report.js
|
|
* Tool for displaying the complexity analysis report
|
|
*/
|
|
|
|
import { z } from 'zod';
|
|
import {
|
|
handleApiResult,
|
|
createErrorResponse,
|
|
getProjectRootFromSession
|
|
} from './utils.js';
|
|
import { complexityReportDirect } from '../core/task-master-core.js';
|
|
import path from 'path';
|
|
|
|
/**
|
|
* Register the complexityReport tool with the MCP server
|
|
* @param {Object} server - FastMCP server instance
|
|
*/
|
|
export function registerComplexityReportTool(server) {
|
|
server.addTool({
|
|
name: 'complexity_report',
|
|
description: 'Display the complexity analysis report in a readable format',
|
|
parameters: z.object({
|
|
file: z
|
|
.string()
|
|
.optional()
|
|
.describe(
|
|
'Path to the report file (default: scripts/task-complexity-report.json)'
|
|
),
|
|
projectRoot: z
|
|
.string()
|
|
.describe('The directory of the project. Must be an absolute path.')
|
|
}),
|
|
execute: async (args, { log, session }) => {
|
|
try {
|
|
log.info(
|
|
`Getting complexity report with args: ${JSON.stringify(args)}`
|
|
);
|
|
|
|
// Get project root from args or session
|
|
const rootFolder =
|
|
args.projectRoot || getProjectRootFromSession(session, log);
|
|
|
|
// Ensure project root was determined
|
|
if (!rootFolder) {
|
|
return createErrorResponse(
|
|
'Could not determine project root. Please provide it explicitly or ensure your session contains valid root information.'
|
|
);
|
|
}
|
|
|
|
// Resolve the path to the complexity report file
|
|
// Default to scripts/task-complexity-report.json relative to root
|
|
const reportPath = args.file
|
|
? path.resolve(rootFolder, args.file)
|
|
: path.resolve(rootFolder, 'scripts', 'task-complexity-report.json');
|
|
|
|
const result = await complexityReportDirect(
|
|
{
|
|
// Pass the explicitly resolved path
|
|
reportPath: reportPath
|
|
// No other args specific to this tool
|
|
},
|
|
log
|
|
);
|
|
|
|
if (result.success) {
|
|
log.info(
|
|
`Successfully retrieved complexity report${result.fromCache ? ' (from cache)' : ''}`
|
|
);
|
|
} else {
|
|
log.error(
|
|
`Failed to retrieve complexity report: ${result.error.message}`
|
|
);
|
|
}
|
|
|
|
return handleApiResult(
|
|
result,
|
|
log,
|
|
'Error retrieving complexity report'
|
|
);
|
|
} catch (error) {
|
|
log.error(`Error in complexity-report tool: ${error.message}`);
|
|
return createErrorResponse(
|
|
`Failed to retrieve complexity report: ${error.message}`
|
|
);
|
|
}
|
|
}
|
|
});
|
|
}
|