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
Add missing privateKey parameters to Greenfield tool documentation
## Summary
- Several Greenfield tools require privateKey but it was not documented
- Without this parameter, tool calls will fail or use unexpected defaults
## Type of Change
- [x] Documentation fix
## Changes Made
- Added `privateKey (required, defaults to env PRIVATE_KEY)` to gnfd_list_buckets, gnfd_get_bucket_full_info, gnfd_download_object
- Consistent annotation across all Greenfield write and read tools
## Testing
- [x] Verified against MCP source privateKeyParam definitions
| gnfd_upload_object / gnfd_create_file |**(Write)** Upload a file to a bucket |`network`, `privateKey`, `filePath` (absolute path to file), `bucketName`|
30
-
| gnfd_download_object | Download object to disk |`network`, `bucketName`, `objectName`, `targetPath` (optional), `privateKey`|
30
+
| gnfd_download_object | Download object to disk |`network`, `bucketName`, `objectName`, `targetPath` (optional), `privateKey`(required, defaults to env PRIVATE_KEY) |
31
31
| gnfd_delete_object |**(Write)** Delete an object |`network`, `privateKey`, `bucketName`, `objectName`|
32
32
| gnfd_create_folder |**(Write)** Create a folder in a bucket |`network`, `privateKey`, `bucketName`, `folderName` (optional) |
0 commit comments