MCP server for codebase indexing, semantic search, and prompt enhancement
npm install ace-tool-rsMCP server for codebase indexing, semantic search, and prompt enhancement.
``bashInstall globally
npm install -g ace-tool-rs
How It Works
This package uses platform-specific optional dependencies to provide pre-built binaries. When you install
ace-tool-rs, npm automatically downloads the correct binary for your platform.$3
| Platform | Architecture | Package |
|----------|--------------|---------|
| macOS | x64, ARM64 |
@ace-tool-rs/darwin-universal |
| Linux | x64 | @ace-tool-rs/linux-x64 |
| Linux | ARM64 | @ace-tool-rs/linux-arm64 |
| Windows | x64 | @ace-tool-rs/win32-x64 |
| Windows | ARM64 | @ace-tool-rs/win32-arm64 |Usage
`bash
ace-tool-rs --base-url --token
`Troubleshooting
$3
If the platform-specific package failed to install, you can install it manually:
`bash
For Linux x64
npm install @ace-tool-rs/linux-x64For macOS
npm install @ace-tool-rs/darwin-universalFor Windows x64
npm install @ace-tool-rs/win32-x64
`$3
If you have Rust installed, you can build from source:
`bash
cargo install ace-tool-rs
`License
GPL-3.0-only
For commercial use, please contact missdeer@gmail.com for licensing options.
Verifying Downloads
Each GitHub release includes a
SHA256SUMS file for integrity verification:`bash
Download the binary and checksum file
curl -LO https://github.com/missdeer/ace-tool-rs/releases/latest/download/ace-tool-rs_Linux_x86_64.tar.gz
curl -LO https://github.com/missdeer/ace-tool-rs/releases/latest/download/SHA256SUMSVerify the checksum
sha256sum -c SHA256SUMS --ignore-missing
``