Skip to main content
Glama

mcp-google-sheets

send-message-to-exchange.ts1.74 kB
import { createAction, Property } from '@activepieces/pieces-framework'; import { rabbitmqAuth } from '../..'; import { rabbitmqConnect } from '../common'; export const sendMessageToExchange = createAction({ auth: rabbitmqAuth, name: 'sendMessageToExchange', displayName: 'sendMessageToExchange', description: 'Send a message on a RabbitMQ exchange', props: { exchange: Property.ShortText({ displayName: 'Exchange', description: 'The name of the exchange to send the message to', required: true, }), routingKey: Property.ShortText({ displayName: 'Routing Key (Optional)', description: 'The routing key to use when sending the message', required: false, defaultValue: '', }), data: Property.Json({ displayName: 'Data', description: 'The data to send', required: true, defaultValue: { "key": "value", "nested": { "key": "value" }, "array": ["value1", "value2"] }, }), }, async run(context) { let connection; let channel; try { const exchange = context.propsValue.exchange; const routingKey = context.propsValue.routingKey || ''; connection = await rabbitmqConnect(context.auth); channel = await connection.createChannel(); await channel.checkExchange(exchange); const result = channel.publish( exchange, routingKey, Buffer.from(JSON.stringify(context.propsValue.data)) ); if (!result) { throw new Error('Failed to send message to exchange'); } return result; } finally { if (channel) await channel.close(); if (connection) await connection.close(); } } });

MCP directory API

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