# Basic Queries

### **Check Node Health**

**You:**

```
Is the Zetrix mainnet node online and healthy?
```

**Claude will:**

* Use `zetrix_check_health`
* Return health status, network info, and timestamp

**Expected Response:**

```
Yes, the Zetrix mainnet node is healthy and responding at https://node.zetrix.com
```

***

### **Get Latest Block Information**

**You:**

```
What's the latest block on Zetrix? Show me the block number, hash, and transaction count.
```

**Claude will:**

* Use `zetrix_get_latest_block`
* Parse and format the response

**Expected Response:**

```
The latest block is #1,234,567 with hash 0xabc123...
It contains 15 transactions and was created at [timestamp].
```

***


---

# 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://docs.zetrix.com/en/developer-resources/zetrix-mcp-server/usage-example/basic-queries.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.
