We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/prasadabhishek/photographi-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
check_metadata.py•412 B
import exifread
import sys
def check(path):
with open(path, 'rb') as f:
tags = exifread.process_file(f)
if tags:
print(f"Metadata found in {path}:")
for tag in tags.keys():
if 'EXIF' in tag:
print(f" {tag}: {tags[tag]}")
else:
print(f"No metadata in {path}")
if __name__ == "__main__":
check(sys.argv[1])