Skip to content
Probe MCP
Get Support

Probe tools reference

Inside code_mode, Claude calls functions on a probe object. They fall into the groups below. Remember the split: stored functions work even when the probe is offline; on-demand functions reach live into the LAN and need the probe Online.

FunctionWhat it does
get_referenceFetch bundled guides and playbooks (no argument lists available docs; a doc/section fetches a section).

Aggregates the engine already ingested — read even when the probe is offline.

FunctionWhat it does
list_probesList your probes with site, status, last heartbeat, and LAN IP.
probe_statusOne probe’s latest status, heartbeat, and version.
list_devicesDiscovered device inventory (SNMP + discovery) with taxonomy.
syslog_rollupsSyslog volume summary (average / peak events-per-minute) over a window.
snmp_metricsSNMP health rollup (CPU, memory, bandwidth) per device. A device that never answered the CPU or memory OID returns null, not 0 — see below.
top_talkersTop 20 source IPs by bytes, from sFlow. Empty unless the flow collector is enabled.
forward_statusWhether this probe’s telemetry is reaching a linked system, one entry per link. Reads cloud state, so it answers even when the probe is offline.

These proxy live to the probe over its tunnel.

FunctionWhat it does
query_syslogLive syslog query by severity / host / program / time (SNMP traps included).
search_syslogFull-text (FTS5) search of live syslog. Has its own small query syntax — see below.
snmp_getLive SNMP GET of specific OIDs.
snmp_walkLive SNMP WALK of a subtree.
poe_statusLive PoE diagnostics (POWER-ETHERNET-MIB + RUCKUS ICX).
port_diagLive per-port health (IF-MIB) — status, speed, error counters.
query_flowsLive individual sFlow records. Needs flow_collector.enabled.
topologyLive L2 topology graph (LLDP + wireless associations).
inventoryLive ground-truth LAN inventory with RUCKUS fingerprints.
reconcile_inventoryJoin a controller’s cloud inventory against probe ground truth.
top_connsTop live packet-capture connections by bytes (Zeek-style). Needs pcap.enabled.
search_connsFree-text search of the live pcap connection table. Needs pcap.enabled.
pcap_querySlice the pcap ring buffer to a downloadable .pcap. Needs pcap.enabled.
auth_sessionsCorrelated 802.1X/EAPOL + RADIUS + DHCP access timeline.
https_forwardReach a private on-prem controller over HTTP (RFC1918 targets only). Needs reach_through.enabled.
serve_tftpServe one config file over TFTP for a switch restore (lab/bench). Needs tftp.enabled.
stop_tftpTear down the active TFTP serve. Needs tftp.enabled.

Words and phrases are literal. A hyphen, colon, or quote inside a term is searched for, not parsed as syntax, so a program name like snmp-trap-assoc finds what you expect.

On top of the literal text you can use:

SyntaxMeaning
AND · OR · NOTBoolean operators. They must be upper case
( )Grouping
term*Prefix match
"exact phrase"Phrase match

Column filters (program:foo) and NEAR are deliberately not available — query_syslog already filters by program and hostname as arguments. A search containing nothing searchable (only punctuation) comes back with search query has no searchable terms.

A null avg_cpu_pct or avg_mem_pct means the device was asked and never answered — most RUCKUS APs don’t implement those OIDs. It does not mean zero load, and it must not be read as one. Each row also carries cpu_unknown and mem_unknown: the number of samples in the window where the value was missing. When only some samples are missing, the average is rescaled over the ones that were actually measured rather than diluted by the gaps.

The probe can run an embedded MQTT broker that RUCKUS One’s Location Based Service reports into, which is the only source of measured client signal on the LAN. The receiver ships off and is switched on for you when R1-MCP registers an LBS source — see Linking with R1-MCP. All three are on-demand and return { error: 'lbs_disabled' } until it is wired.

FunctionWhat it does
lbs_statusReceiver health: the broker, one entry per venue, and the frame counters. If the probe can’t be reached, the last document it uplinked (at most 5 minutes old) comes back with stale: true.
lbs_clientsClients currently heard by RUCKUS APs, with per-chain RSSI, SNR, and PHY. Readings are kept for 5 minutes only.
lbs_airtimeMeasured channel airtime per AP per band — average and peak busy percentage. Minute rollups are kept for 24 hours.

These configure telemetry forwarding to a linked RUCKUS One deployment. R1-MCP calls them during source provisioning — they aren’t functions you drive by hand, and they are on R1-MCP’s allowlist alone, not the other companion systems’.

FunctionWhat it does
r1_forward_configureRegister the complete source list for a link and provision the matching LBS credentials on the probe’s broker. Writes the probe’s config, and the list is whole-link: a source you omit stops being forwarded.
r1_forward_removeStop forwarding one source, or tear down a whole link. Removing the last LBS source turns the receiver off entirely.

Both are idempotent, and the probe picks the change up on its next heartbeat — within 60 seconds.

Register upstream APIs Claude can call with a server-injected secret. See API connections and the vault.

FunctionWhat it does
store_connectionRegister an upstream API connection (cloud / probe-vault / fallback secret modes).
list_connectionsList registered connections (never the secrets).
delete_connectionDelete a connection and its probe-side vault secret.
vault_pubkeyFetch a probe’s hybrid post-quantum vault recipient keys (P-256 + ML-KEM-768).
provision_vault_secretDeliver a secret to the probe vault as an end-to-end sealed envelope.
connection_egressMake an authenticated call to an upstream API, secret injected server/probe-side.

All of these except store_device_credential need ssh.enabled on the probe, which is off by default.

FunctionWhat it does
store_device_credentialStore an SSH credential (AES-256-GCM at rest).
device_cliOpen a persistent SSH session to a device; returns a session_id. Five concurrent sessions, reaped after 600 s idle.
ssh_sendSend input to an open SSH session.
ssh_readRead accumulated output from an SSH session.
ssh_closeClose an SSH session and finalize its recording.
run_device_cliRUCKUS-aware batch CLI to an ICX switch or AP — up to 8 commands, 256 KB of output.
FunctionWhat it does
generate_scorecardRender a co-branded assessment/scorecard PDF from findings; returns a shareable URL.