calibrate-imu
Apply calibration to a raw 9-DOF IMU reading — removes accelerometer bias/scale, gyroscope bias, and magnetometer hard-iron offset
Taxonomy
Linnaean classification joined from the algovigilance taxonomy index via the parent config's rank.
| Rank | Value |
|---|---|
| domain | Substrata |
| kingdom | Constructa |
| phylum | Configa |
| class | station-config |
| order | suit |
| family | mcp-tool-config |
Characteristics:
- substrate:
config - domain:
pv - lifecycle:
continuous - authority:
read - compounding:
producer - io:
agent-request→tool-response
Input schema
accel_xnumberrequired — Raw accelerometer X (m/s²)accel_ynumberrequired — Raw accelerometer Y (m/s²)accel_znumberrequired — Raw accelerometer Z (m/s²)gyro_xnumberrequired — Raw gyroscope X (rad/s)gyro_ynumberrequired — Raw gyroscope Y (rad/s)gyro_znumberrequired — Raw gyroscope Z (rad/s)accel_bias_xnumber — Accel bias X (m/s²)accel_bias_ynumber — Accel bias Y (m/s²)accel_bias_znumber — Accel bias Z (m/s²)gyro_bias_xnumber — Gyro bias X (rad/s)gyro_bias_ynumber — Gyro bias Y (rad/s)gyro_bias_znumber — Gyro bias Z (rad/s)
Example call
POST /api/mcp
Content-Type: application/json
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "station__suit-sensors__calibrate-imu",
"arguments": {
"accel_x": 0,
"accel_y": 0,
"accel_z": 0,
"gyro_x": 0,
"gyro_y": 0,
"gyro_z": 0
}
}
}How to invoke from a client
From any MCP-aware client, add https://algovigilance.com/api/mcp as an MCP server, then call this tool by name. From a raw HTTP client, send the JSON-RPC body above to /api/mcp.
Agent-friendly formats
Working inside an AI assistant? Use the Copy for AI button at the top of this page (or view the raw Markdown) to paste a clean, token-budgeted version of this tool's contract into your conversation.
Related
- All tools (3059 live)
- /api/mcp — endpoint
- /AGENTS.md — agent guide
- /tools/suit-sensors__calibrate-imu/raw.md — this page's Markdown twin