Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.moorcheh.ai/llms.txt

Use this file to discover all available pages before exploring further.

Overview

Calls GET /health and prints a one-line quota summary, then the full health JSON. Use after moorcheh up to confirm the API is reachable and see how much of the global item cap is in use.

Synopsis

moorcheh status [--base-url URL]

Options

FlagDefaultDescription
--base-urlhttp://localhost:8080Moorcheh API base URL

Examples

moorcheh status

moorcheh status --base-url http://localhost:8081

Output

Line 1 — human-readable summary:
items: 4 / 100000  |  remaining: 99996  |  model: nomic-embed-text
Line 2+ — JSON from /health:
status
string
"ok" when the server is healthy.
model
string
Ollama embedding model configured on the server.
items
number
Total items stored across all namespaces.
max_items
number
Global item cap (default 100000).
remaining
number
max_items - items.
Example JSON
{
  "items": 4,
  "max_items": 100000,
  "model": "nomic-embed-text",
  "remaining": 99996,
  "status": "ok"
}
JSON key order may vary. All fields above are present on success.

Exit codes

CodeMeaning
0Server is up and returned health
1Connection refused or API error (for example after moorcheh down)