Skip to main content
Glama

mcp-google-sheets

reply-to-conversation.ts1.99 kB
import { createAction, Property } from '@activepieces/pieces-framework'; import { httpClient, HttpMethod, HttpRequest, } from '@activepieces/pieces-common'; import { dustAuth, DustAuthType } from '../..'; import { assistantProp, DUST_BASE_URL, getConversationContent, timeoutProp, timezoneProp, usernameProp, } from '../common'; export const replyToConversation = createAction({ // auth: check https://www.activepieces.com/docs/developers/piece-reference/authentication, name: 'replyToConversation', displayName: 'Reply to conversation', description: 'Send reply to existing conversation', auth: dustAuth, props: { conversationId: Property.ShortText({ displayName: 'Conversation ID', required: true, }), assistant: assistantProp, query: Property.LongText({ displayName: 'Query', required: true }), username: usernameProp, timezone: timezoneProp, timeout: timeoutProp, }, async run({ auth, propsValue }) { const dustAuth = auth as DustAuthType; const request: HttpRequest = { method: HttpMethod.POST, url: `${DUST_BASE_URL[dustAuth.region || 'us']}/${ dustAuth.workspaceId }/assistant/conversations/${propsValue.conversationId}/messages`, headers: { 'Content-Type': 'application/json', Authorization: `Bearer ${auth.apiKey}`, }, body: JSON.stringify( { content: propsValue.query, mentions: [{ configurationId: propsValue.assistant }], context: { timezone: propsValue.timezone, username: propsValue.username, email: null, fullName: null, profilePictureUrl: null, }, }, (key, value) => (typeof value === 'undefined' ? null : value) ), }; await httpClient.sendRequest(request); return await getConversationContent( propsValue.conversationId, propsValue.timeout, dustAuth ); }, });

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