Skip to main content
Glama
MUSE-CODE-SPACE

Vibe Coding Documentation MCP (MUSE)

analyzeCode.d.ts1.74 kB
/** * 코드 분석 도구 * AST 파싱을 통한 고급 코드 분석 및 다이어그램 생성 */ import { CodeAnalysis } from '../utils/astParser.js'; export interface AnalyzeCodeInput { code: string; language?: string; filename?: string; generateDiagrams?: boolean; diagramTypes?: ('class' | 'flowchart' | 'dependency' | 'all')[]; } export interface AnalyzeCodeOutput { analysis: CodeAnalysis; diagrams?: { type: string; diagram: string; }[]; summary: { totalFunctions: number; totalClasses: number; totalImports: number; complexity: number; exportedItems: number; dependencies: string[]; }; insights: string[]; } export declare function analyzeCodeTool(input: AnalyzeCodeInput): AnalyzeCodeOutput; export declare const analyzeCodeSchema: { name: string; description: string; inputSchema: { type: string; properties: { code: { type: string; description: string; }; language: { type: string; enum: string[]; description: string; }; filename: { type: string; description: string; }; generateDiagrams: { type: string; description: string; }; diagramTypes: { type: string; items: { type: string; enum: string[]; }; description: string; }; }; required: string[]; }; }; //# sourceMappingURL=analyzeCode.d.ts.map

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/MUSE-CODE-SPACE/vibe-coding-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server