Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.murmur.dev/llms.txt

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

Prints the Murmur CLI version and, unless --client is set, queries the API for the server version. Useful for verifying your install, checking for upgrades, and confirming connectivity to the API.

Synopsis

murmur version [flags]

Arguments

NameTypeRequiredDescription
--clientboolnoPrint only the client version and skip the API check. Default: false.

Output

FieldDescription
ClientThe CLI version and commit hash.
APIThe API address the CLI is configured to reach. Omitted with --client.
ServerThe server version and commit hash. Omitted with --client.
If the CLI cannot load configuration, the Server line reads not configured. If the API is unreachable, it reads unavailable. Neither case causes a non-zero exit — the client version is always printed.

Examples

Full version check

murmur version
Client: 0.4 (a1b2c3d4)
API:    api.murmur.sh:443
Server: 0.4 (e5f6a7b8)

Client version only

murmur version --client
Client: 0.4 (a1b2c3d4)

Server unreachable

murmur version
Client: 0.4 (a1b2c3d4)
API:    api.murmur.sh:443
Server: unavailable (context deadline exceeded)

Errors

This command does not exit non-zero. If the server is unreachable or the CLI is not configured, the output reflects the failure inline.
  • murmur mcp — start the MCP server (performs a version check on startup)