Inspection got easier.
MCAP is easier to inspect, validate, and move between tools than a lot of older recording setups. That is why it keeps showing up in robotics stacks.
MCAP is becoming the default recording format in modern robotics workflows because it is portable, indexed, and easier to work with than the old pile of bag formats. But the tooling gap is still real: inspect the recording, yes; turn it into a mapped point cloud, not always.
MCAP is easier to inspect, validate, and move between tools than a lot of older recording setups. That is why it keeps showing up in robotics stacks.
Once you have the file, you still need to answer the hard question: do you need raw frames from one topic, or do you need a mapped output from the full run?
Start by summarizing the file and confirming the topics you care about.
mcap info demo.mcap mcap cat demo.mcap --topics /velodyne_points
Foxglove is excellent for opening the file and visually inspecting the data stream.
foxglove-studio /path/to/your/file.mcap
Great for playback and debugging. It is not a SLAM-to-map service.
If you want to inspect or filter ROS1 messages inside MCAP, the upstream Python helpers get you there quickly.
from mcap_ros1.reader import read_ros1_messages
for msg in read_ros1_messages("demo.mcap"):
print(f"{msg.topic}: {msg.ros_msg}")Start by confirming the topics, message types, and duration are what you expect.
LidarFlow scans the MCAP and proposes the LiDAR, GNSS, IMU, and TF topics for the run.
GLIM runs the SLAM step. When GNSS is available FlexCloud aligns the result to real-world coordinates.
Preview the mapped output in the browser, then download PCD, PLY, and metadata.
The CLI, Foxglove, and Python libraries are exactly what you want when the job is “tell me what is inside this file.” They are not the full answer when the job is “hand me back one mapped point cloud from the run.”
Upload the MCAP, let the product validate the topics, run LiDAR SLAM, georeference the result when GNSS exists, and download the mapped artifacts from the browser.