Skip to main content
Glama

mcp-google-sheets

add-users-to-group.action.ts1.9 kB
/* eslint-disable @typescript-eslint/no-explicit-any */ import { discourseAuth } from '../../index'; import { HttpMethod, httpClient } from '@activepieces/pieces-common'; import { Property, createAction } from '@activepieces/pieces-framework'; export const addUsersToGroup = createAction({ auth: discourseAuth, name: 'add_users_to_group', description: 'Add users to a group', displayName: 'Add Users to Group', props: { group_id: Property.Dropdown({ description: 'Id of the group', displayName: 'Group Id', required: true, refreshers: [], options: async ({ auth }: any) => { const response = await httpClient.sendRequest({ method: HttpMethod.GET, url: `${auth.website_url.trim()}/groups.json`, headers: { 'Api-Key': auth.api_key, 'Api-Username': auth.api_username, }, }); const options = response.body['groups'].map( (res: { display_name: any; id: any }) => { return { label: res.display_name, value: res.id, }; } ); return { options: options, disabled: false, }; }, }), users: Property.Array({ description: 'List of users to add to the group', displayName: 'Users', required: true, }), }, async run(context) { const { group_id, users } = context.propsValue; //convert array to comma separated string users.join(','); const response = await httpClient.sendRequest({ method: HttpMethod.PUT, url: `${context.auth.website_url.trim()}/groups/${group_id}/members.json`, headers: { 'Api-Key': context.auth.api_key, 'Api-Username': context.auth.api_username, }, body: { usernames: users.join(','), }, }); return response.body; }, });

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