hen 0.19.0

Run protocol-aware API request collections from the command line or through MCP.
Documentation
$ GQL_ORIGIN = https://lorem-api.com/api/graphql

---

Get User via GraphQL

protocol = graphql
POST {{ GQL_ORIGIN }}
operation = GetUser
variables = {"getUserId":"abc1234"}

~~~graphql
query GetUser($getUserId: String) {
  getUser(id: $getUserId) {
    id
    name
  }
}
~~~

# GraphQL request succeeds
^ & status == 200

# Returns the requested user id
^ & graphql.data.getUser.id == "abc1234"