Getting Started with Wanaku
Welcome to Wanaku! In this guide you will install the Wanaku CLI, start a local instance, add a tool, and use it from an AI agent. By the end you will have a working MCP router that connects your agent to live data — no containers, no complex setup.
What You Will Need
- Java 21 or later
- An agent that supports the Model Context Protocol (MCP).
TIP
If you don't know what MCP is, read our intro to MCP and Wanaku.
Step 1: Install the Wanaku CLI
The CLI ships as native binaries for Linux (x86_64) and macOS (AArch64), or as a Java-based archive that runs on any OS with Java 21+. Pick the tab that matches your system:
curl -sSL https://wanaku.ai/get-wanaku.sh | bashwget https://github.com/wanaku-ai/wanaku/releases/download/v0.1.3/wanaku-cli-0.1.3-osx-aarch_64.zip
unzip wanaku-cli-0.1.3-osx-aarch_64.zip
install -m 750 wanaku-cli-0.1.3-osx-aarch_64/bin/wanaku wanaku-cli-0.1.3-osx-aarch_64/bin/wanaku-cli $HOME/bin/
rm -rf wanaku-cli-0.1.3-osx-aarch_64 wanaku-cli-0.1.3-osx-aarch_64.zipwget https://github.com/wanaku-ai/wanaku/releases/download/v0.1.3/wanaku-cli-0.1.3-linux-x86_64.zip
unzip wanaku-cli-0.1.3-linux-x86_64.zip
install -m 750 wanaku-cli-0.1.3-linux-x86_64/bin/wanaku wanaku-cli-0.1.3-linux-x86_64/bin/wanaku-cli $HOME/bin/
rm -rf wanaku-cli-0.1.3-linux-x86_64 wanaku-cli-0.1.3-linux-x86_64.zip# Requires Java 21+
wget https://github.com/wanaku-ai/wanaku/releases/download/v0.1.3/wanaku-cli-0.1.3.zip
unzip wanaku-cli-0.1.3.zip
# Add the extracted bin/ directory to your PATHPATH Configuration
If you installed the CLI with get-wanaku.sh, it is placed in $HOME/bin. Some shells do not include $HOME/bin in the default PATH, so you may need to add it manually before wanaku is available as a command.
To add $HOME/bin to your PATH for the current session:
export PATH="$HOME/bin:$PATH"To make this permanent, add the same line to your shell profile file, such as ~/.bashrc or ~/.zshrc, and then reload the shell.
TIP
The Quick Install script auto-detects your OS and architecture, downloads the latest release, verifies the checksum, and installs to $HOME/bin. You can override the install directory with WANAKU_INSTALL_DIR=/usr/local/bin.
Verify the installation:
wanaku --versionStep 2: Start Wanaku Locally
This single command downloads the router and the built-in capability services, then starts everything on your machine:
wanaku start localAuthentication is disabled automatically in local mode, so there is nothing else to configure.
After a few seconds, open http://localhost:8080 in your browser. You should see the Wanaku UI.
TIP
You can enable additional capability services with the --services option. Run wanaku start local --help to see what is available.
Step 3: Check That Everything Is Running
Use the CLI to verify that the capability services registered with the router:
wanaku capabilities listYou should see output similar to:
service serviceType host port status lastSeen
http tool-invoker 127.0.0.1 9000 active Wed, May 28, 2026 at 10:00:00This means Wanaku is up and running, and the HTTP capability service is ready to handle tool calls.
Step 4: Add a Tool
Wanaku uses toolsets to group related tools together. Let's import a currency conversion toolset so your agent can look up exchange rates.
- Open http://localhost:8080/admin/#/service-catalog
- Click Toolsets Repositories Tab
- Expand the wanaku-toolsets one.
- Import the currency one.
Step 5: Connect an AI Agent
Wanaku speaks the Model Context Protocol (MCP) over HTTP. Any MCP-compatible client can connect to it. How you do that will depend on the AI agent you are using.
On Claude Desktop you can run Wanaku's command wanaku configure claude
Step 6: Testing
Then ask it a question like:
How much is 100 USD in CZK?

What's Next?
You now have a working Wanaku instance with a real tool. Next, learn how to manage tools, resources, prompts, and forwards:
- Managing Tools, Resources, Prompts, and Forwards (demo 1.02)
If something does not work, check the logs printed by wanaku start local in your terminal.
If you find a bug, please report it. To get in touch with the community, visit the Wanaku project.