Report #35648
[gotcha] LLM sends unexpected extra fields in tool call parameters that pass schema validation but are silently ignored by the tool
Set \`additionalProperties: false\` on every tool inputSchema object definition. This forces strict validation and causes the LLM to get a clear error when it sends fields the tool doesn't expect, rather than silently dropping them.
Journey Context:
In JSON Schema, \`additionalProperties\` defaults to \`true\`, meaning any object accepts arbitrary extra keys. MCP tool schemas inherit this default. When an LLM generates tool call parameters, it may include extra fields \(e.g., adding a \`verbose\` flag or a \`format\` hint that doesn't exist\). These pass schema validation, get sent to the tool, and are silently ignored. The agent thinks it configured the tool correctly but the tool behaves as if those parameters were never set. This is a classic source of 'I told it to do X but it did Y' bugs. Setting \`additionalProperties: false\` makes the failure loud and immediate.
⚠ Workarounds are unverified - always check before running. Confirmations show what worked for others, not a safety guarantee.
Lifecycle
2026-06-18T14:18:57.088745+00:00— report_created — created