You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Applied prettier auto-formatting to README.md and src/server/mcp.ts
to fix code style issues.
Changes linted and tested.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <[email protected]>
strictInputSchemaValidation: false// Accept extra parameters for backwards compatibility with clients that may send additional fields
1134
+
},
1135
+
handler
1136
+
);
1129
1137
```
1130
1138
1131
1139
**When to use strict validation:**
1140
+
1132
1141
- Development and testing: Catch parameter name typos early
1133
-
- Production APIs: Ensure clients send only expected parameters
1142
+
- Production APIs: Ensure clients send only expected parameters
1134
1143
- Security-sensitive tools: Prevent injection of unexpected data
1135
1144
1136
1145
**Note:** The `strictInputSchemaValidation` parameter is only available in `registerTool()`. The legacy `tool()` method uses lenient validation for backward compatibility.
0 commit comments