MCP.so
ログイン
A

Aidex

@CSCSoftware

Aidex について

MCP Server that gives AI coding assistants instant access to your entire codebase through a persistent Tree-sitter index. Instead of grep flooding your context with 2000+ tokens per search, AiDex returns precise identifier matches in ~50 tokens. Supports 11 languages: C#, TypeScr

基本情報

カテゴリ

その他

トランスポート

stdio

公開者

CSCSoftware

投稿者

CSCSoftware

設定

以下の設定を使って、このサーバーを MCP 対応クライアントに追加してください。

{
  "mcpServers": {
    "aidex": {
      "command": "aidex",
      "args": []
    }
  }
}

ツール

ツールは検出されませんでした

ツールは README から自動的に抽出されます。メンテナーは ## Tools という見出しの下に記載することで、このタブに反映できます。

概要

What is Aidex?

Aidex is an MCP server that indexes a codebase once using Tree-sitter and provides AI assistants with instant access to every function, class, and method signature. It reduces the token consumption of code searches from thousands of tokens to roughly 50 tokens per query, eliminating the need to grep or read entire files during AI sessions.

How to use Aidex?

Install the package globally with npm install -g aidex-mcp and run aidex setup. The setup command automatically detects and registers Aidex with installed AI clients such as Claude Code, Claude Desktop, Cursor, Windsurf, Gemini CLI, and VS Code Copilot.

Key features of Aidex

  • Smart extraction using Tree-sitter – parses code properly, indexes identifiers not keywords
  • Method signatures – gets function prototypes without reading implementations
  • Project summary – auto-detects entry points, main classes, and language breakdown
  • Incremental updates – re-indexes single files after changes
  • Cross-project links – queries across multiple related projects
  • Time-based filtering – finds changes in the last hour, day, or week
  • Session notes – leaves reminders that persist in the database
  • Interactive viewer – browser-based project explorer with live reload

Use cases of Aidex

  • Quickly locating function, class, or method definitions across a large codebase
  • Reducing AI context consumption during code exploration sessions
  • Querying code changes from a specific time window (e.g., last hour)
  • Searching across multiple related projects without switching tools
  • Leaving persistent notes for the next AI session about ongoing work

FAQ from Aidex

What languages does Aidex support?

Aidex supports C#, TypeScript, JavaScript, Rust, Python, C, C++, Java, Go, PHP, and Ruby.

How does Aidex differ from grep or ripgrep?

Grep returns all text matches (thousands of tokens per search), while Aidex returns only identifiers (roughly 50 tokens). Aidex knows about methods, classes, and types, and its index persists across sessions instead of starting fresh every time.

What are the system requirements?

Aidex requires Node.js and uses SQLite with WAL mode as its database (zero configuration, single file). No additional database setup is needed.

Does Aidex work with my AI client?

The aidex setup command auto-detects and registers Aidex with Claude Code, Claude Desktop, Cursor, Windsurf, Gemini CLI, and VS Code Copilot. It works with any client that supports the MCP protocol.

How often do I need to re-index the codebase?

You only need to run the initial setup once. After code changes, Aidex supports incremental updates to re-index single files without rebuilding the entire index.

コメント

「その他」の他のコンテンツ