hosts/ · Body: host knowledge (free-form text, optional)
The MDX body becomes the host’s knowledge — free-form notes the agent reads before working on this host. Keep it operator-facing: installed tools, quirks, where credentials live, exact software versions.
Frontmatter
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
org | string | null | No | tenant | Organization name. Omit (or null) for hosts that should exist outside any org. |
name | string | Yes | — | Primary identifier. Typically the machine’s hostname or a descriptive name. |
public_ip | string | null | No | null | Externally accessible IP. At least one of public_ip or private_ip is required at create time. |
private_ip | string | null | No | null | Internal IP. |
additional_names | string[] | No | [] | Free-form aliases for recognition and search — not structured tags. |
target_type | ssh | winrm | No | ssh | Connection protocol. |
target_port | integer | null | No | null (defaults to 22 / 5985) | Override only for non-standard ports. |
skip_tls_verify | boolean | No | false | Accept self-signed certs on WinRM-over-HTTPS targets. |
tags | string[] | No | [] | Vocab-validated tags: os:*, shell:*, type:*, tech:*, plus open app:*. |
Fields NOT supported
These come from later forms or other resources and are not yet declarable in MDX:- Jump-host fields (
jump_host_id,is_jump_host,jump_host_user_credential_id,jump_host_credential_id,eligible_subnets) — set in Command Center on the host’s detail page knowledgefield — comes from the MDX body, not frontmatterdescription— set in the UI for nowid,tenant_id,org_id,created_at,updated_at— system-set
Example
hosts/web-01.mdx
Gotchas
- Tags are vocab-validated. Free-text tags are rejected. See the tag vocabulary for the closed list.
additional_namesare not the structured tags. They’re free-form aliases for search. Real tags go intags.- Re-syncing the body replaces host knowledge wholesale. Editing the body in MDX and re-syncing overwrites what’s in Command Center.
- At least one IP is required. Either
public_iporprivate_ipmust resolve to a non-null value before the host can be created.

