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.
20 lines • 509 B
TypeScript
import type { ProjectIndexer } from '../core/indexer.js';
export declare class MethodsResource {
private indexer;
constructor(indexer: ProjectIndexer);
read(): Promise<{
contents: {
uri: string;
mimeType: string;
text: string;
}[];
}>;
readRelationships(): Promise<{
contents: {
uri: string;
mimeType: string;
text: string;
}[];
}>;
}
//# sourceMappingURL=methods-resource.d.ts.map