FoundryNet / OEMs / KUKA

INDUSTRIAL ROBOT · TELEMETRY NORMALIZATION

KUKA telemetry normalization: connect your KUKA equipment to any AI agent

16,908 confirmed mappings·18 OEM families·14 protocols·99% field coverage

Forge turns raw KUKA tags into one clean, governed schema your AI agent already understands. One MCP call, no per-robot integration project.

Try it free: 3 machines, no credit card → See the full demo →

The problem

Why KUKA data is hard to integrate

KUKA KRC controllers surface state as $-prefixed system variables ($AXIS_ACT, $TORQUE_AXIS) over KUKAVARPROXY or EKI. Expressive but utterly vendor-specific.

Typical KUKA equipment communicates over OPC UA, ROS 2 (DDS), PROFINET / S7, EtherNet/IP. Each firmware revision, model line and integrator names the same physical quantity differently, so every AI or analytics project pays the integration tax again, the tax that cancels 40% of industrial AI deployments before they ship.


The solution

One universal schema for every KUKA robot

Forge normalizes KUKA telemetry into Forge's canonical field set, the same 366 canonical fields used across all 18 manufacturers. Point Forge at the robot, pass oem: "kuka", and spindle speed is spindle_speed_rpm whether it came from a KUKA controller or anything else on the floor.

OPC UAROS 2 (DDS)PROFINET / S7EtherNet/IP
99%Field coverage
11Canonical industrial robot fields
16,908Corpus mappings

Field coverage

What Forge normalizes for KUKA

Confirmed canonical fields your agent gets from KUKA robots, drawn from Forge's 16,908-mapping corpus:

robot.joint.positionrobot.joint.velocityrobot.joint.effortrobot.joint.currentrobot.joint.temperaturerobot.tcp.poserobot.tcp.speedrobot.tcp.forcerobot.payloadrobot.moderobot.safety.status_bits

Sample normalization

Raw tag inCanonical field outMeaning
$AXIS_ACT.A1: 88.2robot.joint.position: 88.2axis 1 actual angle
$TORQUE_AXIS_1: 12.4robot.joint.effort: 12.4axis 1 torque
$PAYLOAD.M: 6.0robot.payload: 6.0payload mass
$PRO_MODE: "AUTO"robot.mode: "AUTO"program mode

30-second deployment

Add KUKA to your agent with one call

No SDK, no per-tag mapping, no historian project. Connect the MCP server and normalize live KUKA data:

claude mcp add --transport http forge https://mcp.foundrynet.io/mcp --header 'Authorization: Bearer YOUR_API_KEY'
# normalize raw KUKA telemetry into the universal schema
curl -s https://forge.foundrynet.io/v1/normalize \
  -H 'Content-Type: application/json' \
  -d '{"data": {"$AXIS_ACT.A1": 88.2, "$TORQUE_AXIS_1": 12.4, "$PAYLOAD.M": 6.0}, "oem": "kuka"}'
{"robot.joint.position": 88.2, "robot.joint.effort": 12.4, "robot.payload": 6.0, "coverage": "100%", "confidence": 0.97}

Unknown tags never get force-mapped. Fields below the confidence floor abstain rather than guess, so your agent never acts on a bad reading.

Start free: Forge Connect, 3 machines → See the full demo →