Skip to main content
Glama

Code Analysis MCP Server

コード分析MCPサーバー

AI モデルが自然言語の会話を通じてコードベースを理解し、分析できるようにするモデル コンテキスト プロトコル (MCP) サーバー。

✨ ハイライト

  • 自然なコード探索: コードベースについて高レベルの質問をする
    "What are all the different payment providers integrated in the system?"
  • コードの深い理解: データモデルとシステムアーキテクチャに関する洞察を抽出
    "How does the user authentication flow work from frontend to database?"
  • 動的解析: データフローをトレースし、システムの関係を理解する
    "Show me all the places where we calculate transaction fees"

制限事項

このツールは、 Aiderのようなより高度なコード分析ツール/コパイロットのよりシンプルな代替手段です。Aiderのようなツールのような高度なコード分析機能や堅牢性は備えていませんが、Claude Proサブスクリプションを既にお持ちの場合、コードベース探索のための軽量なソリューションを提供します。主な利点は以下のとおりです。

  • コスト効率が高い: 既存のClaude Proサブスクリプションを使用すると、大規模なコードベースを分析する際に高額になる可能性のあるツールとは異なり、追加のAPIコストは発生しません。
  • シンプルなセットアップ:最小限の設定ですぐに始められます
  • 基本分析:高レベルのコード理解と探索に適しています

コード分析に対するアプローチがより単純なため、より専門的なツールに比べてエラーが多くなったり、詳細な分析情報が得られなかったりする可能性があることに注意してください。

🚀 クイックスタート

  1. サーバーをインストールします。
git clone https://github.com/saiprashanths/code-analysis-mcp.git cd code-analysis-mcp
  1. Claudeデスクトップアプリをインストールします。Claudeデスクトップアプリを使用したMCPサーバーの設定手順の詳細については、ドキュメントを参照してください。
  2. Claude Desktop の構成ファイルでサーバーを構成します。
  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
{ "mcpServers": { "code-analysis": { "command": "uv", "args": [ "--directory", "/PATH/TO/YOUR/REPO", "run", "code_analysis.py" ] } } }
  1. Claude Desktop を再起動してコードの分析を開始してください。
  2. ツールが正しく設定されていることを確認する
  • ツールアイコンをクリックすると、 code-analysisツールが表示されます。
  • 統合ボタンをクリックするとanalyze_code_repositoryプロンプトが表示されます。

💡 使用例

複雑なコードベースを理解するためにツールを使用する方法は次のとおりです。

まず、以下に示すanalyze_code_repositoryプロンプトをクリックしてください。リポジトリを初期化して作業を開始する手順が案内されます。

You: How does the transaction processing work in this system? Claude: Let me analyze the data flow for transactions. Looking at the codebase, I can see that transaction processing happens through several key components: 1. Raw transaction data is captured in the `TransactionEvent` model with fields for: - Payment status - Amount - Fee calculations - Processing timestamps 2. This data is then processed through the PaymentSummary model, which: - Validates payment provider responses - Calculates processing fees - Records transaction status Would you like me to explain any part of this in more detail? You: What are the key database tables involved? Claude: The main tables in the transaction processing pipeline are: 1. transaction_events: Stores raw payment events 2. payment_summary: Processed transaction records 3. payment_providers: Provider configuration 4. merchant_accounts: Account-specific settings Let me know if you'd like to see the schema for any of these tables!

🔧 利用可能なツール

リポジトリの初期化

分析用のコード リポジトリを初期化します。

initialize_repository("/path/to/repo") # Output: Successfully initialized code repository at: /path/to/repo

リポジトリ情報を取得する

初期化されたリポジトリに関する情報を取得します。

get_repo_info() # Output: # Code Repository Information: # Path: /path/to/repo # Exists: True # Is Directory: True # Found .gitignore file

リポジトリ構造を取得する

リポジトリのファイル構造を調べます。

get_repo_structure(depth=2) # Output: # 📁 src/ # 📁 api/ # 📄 routes.py # 📄 models.py # 📁 utils/ # 📄 helpers.py # 📄 main.py

読み取りファイル

特定のファイルを読み取って分析します。

read_file("src/api/models.py") # Output: # File: src/api/models.py # Language: python # Size: 2.3 KB # # [File contents...]

⚙️ 技術的な詳細

  • デフォルトのスキャン深度: 3 レベル
  • 最大ファイルサイズ: 1MB
  • ファイルあたりの最大行数: 1000
  • .gitignore にリストされているパスを無視します
  • ローカルファイルシステムへのアクセスのみ
  • ディレクトリトラバーサルを防ぐためにファイルパスを検証します

📝 ライセンス

このプロジェクトは MIT ライセンスに基づいてライセンスされています - 詳細についてはLICENSEファイルを参照してください。

You must be authenticated.

A
security – no known vulnerabilities
F
license - not found
A
quality - confirmed to work

local-only server

The server can only run on the client's local machine because it depends on local resources.

サーバーは、コードベースの探索と理解のための自然言語によるやりとりを容易にし、既存の Claude Pro サブスクリプションをサポートするコスト効率の高いシンプルなセットアップを使用して、データ モデルとシステム アーキテクチャに関する洞察を提供します。

  1. ✨ ハイライト
    1. 制限事項
      1. 🚀 クイックスタート
        1. 💡 使用例
          1. 🔧 利用可能なツール
            1. リポジトリの初期化
            2. リポジトリ情報を取得する
            3. リポジトリ構造を取得する
            4. 読み取りファイル
          2. ⚙️ 技術的な詳細
            1. 📝 ライセンス

              Related MCP Servers

              • A
                security
                A
                license
                A
                quality
                An MCP server implementation that integrates Claude with Salesforce, enabling natural language interactions with Salesforce data and metadata for querying, modifying, and managing objects and records.
                Last updated -
                7
                87
                15
                TypeScript
                MIT License
              • -
                security
                F
                license
                -
                quality
                A simple server that integrates with Claude to allow querying and manipulating Notion pages and databases through natural language prompts.
                Last updated -
                275
                JavaScript
              • A
                security
                A
                license
                A
                quality
                An MCP server implementation that integrates Claude with Salesforce, enabling natural language interactions with Salesforce data and metadata for querying, modifying, and managing objects and records.
                Last updated -
                7
                18
                4
                TypeScript
                MIT License
                • Apple
                • Linux
              • -
                security
                A
                license
                -
                quality
                A server that enables querying the dbt Semantic Layer through natural language conversations with Claude Desktop and other AI assistants, allowing users to discover metrics, create queries, analyze data, and visualize results.
                Last updated -
                7
                TypeScript
                MIT License

              View all related MCP servers

              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/saiprashanths/code-analysis-mcp'

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