raw_request
Send arbitrary HTTP requests to the LM Studio REST API for endpoints not covered by dedicated tools, such as stateful chats or model downloads.
Instructions
Escape hatch: send an arbitrary request to the LM Studio REST API.
Use this when you need an endpoint not covered by a dedicated tool (e.g. /api/v1/chat stateful chats, /api/v1/models/download, /v1/responses, the Anthropic-compatible /v1/messages, etc.). path must start with a slash and is appended to the configured base URL.
Examples: raw_request(method="GET", path="/api/v0/models") raw_request(method="POST", path="/api/v1/chat", json_body={"model":"qwen/qwen3-4b-2507","messages":[{"role":"user","content":"hi"}]})
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | ||
| method | Yes | ||
| json_body | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||