Install
There is no installer yet. You will be running with the source code directly.
Requirements
- Git
- Java 21+: many ways to do that, one simple way is to install https://sdkman.io/ then,
sdk install java 21-tem - Bash or Zsh shell installed: already installed on Mac/Linux. On Windows you can use WSDL2
Process
- Clone this repository
- Create an alias
medatarunin your~/.bash_aliases(bash on Linux or Windows with bash installed) or~/.zshrc(MacOS or Linux with zsh) and open new terminal (to load the alias)
alias medatarun='f() {
export MEDATARUN_APPLICATION_DATA=$(pwd);
if [ $# -gt 0 ]; then
/path/to/medatarun/gradlew -p /path/to/medatarun run --args="$*";
else
/path/to/medatarun/gradlew -p /path/to/medatarun run;
fi
}; f'
AI Agents
Add to your Codex / ChatGPT / Claude configuration :
[mcp_servers.medatarun]
url = "http://localhost:8080/mcp"