Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion src/backend/mcp_servers/gdrive_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -1263,7 +1263,13 @@ async def display_drive_image(
f"Filename: {stored_filename}",
f"Size: {record.get('size_bytes')} bytes",
]


# Include signed URL and expiry details so clients can locate the image
if signed_url:
lines.append(f"Signed URL: {signed_url}")
if expires_at:
lines.append(f"Signed URL expires at: {expires_at}")

return "\n".join(lines)


Expand Down