Fine0830 commented on code in PR #856: URL: https://github.com/apache/skywalking-banyandb/pull/856#discussion_r2552121343
########## docs/operation/mcp-server/setup.md: ########## @@ -0,0 +1,190 @@ +# Setup MCP Server + +This guide explains how to set up and use the BanyanDB MCP server from pre-built binaries or Docker images. + +## Prerequisites + +- **Node.js 20+** installed (for binary usage) +- **BanyanDB** running and accessible +- **MCP client** (e.g., Claude Desktop, MCP Inspector, or other MCP-compatible clients) + +## Using Pre-built Binary + +The MCP server binary is included in the BanyanDB release package. After extracting the release, you can find the MCP server in the `mcp-server` directory. + +### Building from Source Package + +```bash +cd mcp-server +make build +``` + +The build process will: +1. Install npm dependencies +2. Compile TypeScript to JavaScript +3. Create the `dist/` directory with the compiled binary Review Comment: Perhaps it's the binary function in the scripts/release.sh -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
