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 { createAction, Property } from '@activepieces/pieces-framework';
import { instantVerify } from '../api';
import { clearoutAuth } from '../auth';
export const instantVerifyAction = createAction({
name: 'instant_verify',
auth: clearoutAuth,
displayName: 'Instant Verify',
description: 'Instant Verify an email address',
props: {
email: Property.ShortText({
displayName: 'Email',
description: 'Email address to verify',
required: true,
}),
},
async run(context) {
return await instantVerify(context.auth, {
email: context.propsValue.email,
});
},
});