We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/activepieces/activepieces'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import { Property, createAction } from '@activepieces/pieces-framework';
import * as ExifReader from 'exifreader';
export const getMetaData = createAction({
name: 'get_meta_data',
description: 'Gets metadata from an image',
displayName: 'Get image metadata',
props: {
image: Property.File({
displayName: 'Image',
required: true,
}),
},
async run(context) {
const tags = await ExifReader.load(context.propsValue.image.data);
return tags;
},
});