UNPKG

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.

13 lines 439 B
import type { ProjectIndexer } from '../core/indexer.js'; export interface SearchMethodsArgs { query: string; type?: 'method' | 'function' | 'class' | 'interface' | 'type' | 'all'; includeUsages?: boolean; } export declare function searchMethodsTool(indexer: ProjectIndexer, args: SearchMethodsArgs): Promise<{ content: { type: string; text: string; }[]; }>; //# sourceMappingURL=search-methods.d.ts.map