Build core and MCP extensions.
Build Core
{ "command": "build core" }
{ "command": "build core --release" }
Terminal-only (requires shell):
just build
Build MCP Extensions
Build All MCP Servers
{ "command": "build mcp" }
{ "command": "build mcp --release" }
Build Specific MCP Server (Terminal Only)
cargo build -p <crate-name>
cargo build -p <crate-name> --release
Troubleshooting
Missing dependencies: Run rustup update and cargo check to verify toolchain and dependencies.
Compilation error: Run cargo clippy -p <crate-name> -- -D warnings for detailed errors, and cargo fmt -p <crate-name> -- --check for formatting issues.
Quick Reference
| Task | Command |
|---|---|
| Build all | just build |
| Build core | systemprompt build core |
| Build MCP | systemprompt build mcp |
| Release build | just build --release |
| Build single crate | cargo build -p <crate-name> |
| Release single crate | cargo build -p <crate-name> --release |