Early Access — Registration is open. Billing and downloads will be available soon.

Getting Started

Download, install, and send your first request in under 60 seconds.

1

Download the binary

The quickest way to install — auto-detects your OS and architecture:

$ curl -fsSL https://rqwstr.com/install.sh | sh

Or download manually for your platform.

2

Authenticate with rqwstr setup

The setup wizard opens your browser for authentication. Your license key and config are automatically downloaded.

$ rqwstr setup

  Opening browser for authentication...
   https://rqwstr.com/api/v1/auth/device/authorize?code=ABCD-1234

  Waiting for authorization... 

  License: Pro (expires 2026-04-08)
  Config written to ~/.rqwstr/config.toml

Don't have an account yet? Sign up free — it takes 10 seconds.

3

Add to Your MCP Client

Add rqwstr as an MCP server in your client configuration (e.g. Claude Code, Cursor, or any MCP-compatible client):

{
  "mcpServers": {
    "rqwstr": {
      "command": "rqwstr",
      "args": ["serve"]
    }
  }
}
4

Start hunting

Talk to your AI assistant in natural language. It calls rqwstr's MCP tools behind the scenes:

You:

"Set up a hunt for httpbin.org"

Assistant (calls hunt):

Hunt created for httpbin.org. All requests will be stored in hunt-httpbin-org.sqlite.

You:

"Send a GET request to https://httpbin.org/get and show me the response headers"

Assistant (calls send):

200 OK | 89ms | 1.2kb

Content-Type: application/json
Access-Control-Allow-Origin: *
X-Powered-By: Flask

You:

"Send a POST to https://httpbin.org/post with JSON body {"username": "admin", "password": "test"} and save it as login-attempt"

Assistant (calls send, save):

200 OK | 112ms | 0.8kb — saved as "login-attempt"

You:

"Search all my stored requests for Set-Cookie headers"

Assistant (calls search):

Found 3 responses with Set-Cookie headers across 12 stored requests.

Next steps