ts-project-indexer-mcp
Version:
A powerful MCP (Model Context Protocol) server that indexes and analyzes TypeScript/JavaScript projects, providing intelligent code exploration, dependency tracking, method discovery, and project structure analysis for AI assistants and development tools.
15 lines • 453 B
TypeScript
import type { ProjectIndexer } from '../core/indexer.js';
export interface FindUsagesArgs {
filePath?: string;
methodName?: string;
className?: string;
searchType: 'imports' | 'usages' | 'both';
includeDetails?: boolean;
}
export declare function findUsagesTool(indexer: ProjectIndexer, args: FindUsagesArgs): Promise<{
content: {
type: string;
text: string;
}[];
}>;
//# sourceMappingURL=find-usages.d.ts.map