# Client GUI

{% hint style="warning" %}
**This is the manual for older MicroStream versions (Version < 5.0).**

**The new documentation (Version >= 5.0) is located at:**

[https://docs.microstream.one/](https://docs.microstream.one/manual)
{% endhint %}

Based on the REST API we provide a client, which serves a convenient web user interface to browse through the storage data.

It is a runnable jar which starts a simple web server which then can be accessed by a browser of your choice.

To download it use maven

{% code title="pom.xml" %}

```markup
<repositories>
    <repository>
        <id>microstream-releases</id>
        <url>https://repo.microstream.one/repository/maven-public/</url>
    </repository>
</repositories>
<dependencies>
    <dependency>
        <groupId>one.microstream</groupId>
        <artifactId>storage.restclient.app</artifactId>
        <version>04.01.00-MS-GA</version>
    </dependency>
</dependencies>
```

{% endcode %}

&#x20;or this direct link:

{% embed url="<https://repo.microstream.one/repository/maven-public/one/microstream/storage.restclient.app/04.01.00-MS-GA/storage.restclient.app-04.01.00-MS-GA.jar>" %}

Start the client. The port parameter is optional, default port is 8080.

```
java -jar storage.restclient.app-04.01.00-MS-GA.jar --port=80
```

Then just open <http://localhost> in your browser, select the base URL of the REST service and click connect.

![](/files/-M525HuVaFhOVwA8GwQ0)

Now you can browse through the data of the storage:

![](/files/-M526MWpbPt2pnspEC4M)

Or view the statistics:

![](/files/-M526D3VdbBUaeBmohqk)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://manual.docs.microstream.one/data-store/rest-interface/client-gui.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
