Skip to main content
Glama

mcp-google-sheets

create-private-channel.ts1.26 kB
import { microsoftTeamsAuth } from '../../'; import { createAction, Property } from '@activepieces/pieces-framework'; import { Client } from '@microsoft/microsoft-graph-client'; import { microsoftTeamsCommon } from '../common'; import { createGraphClient, withGraphRetry } from '../common/graph'; export const createPrivateChannelAction = createAction({ auth: microsoftTeamsAuth, name: 'microsoft_teams_create_private_channel', displayName: 'Create Private Channel', description: 'Create a new private channel in a team.', props: { teamId: microsoftTeamsCommon.teamId, channelDisplayName: Property.ShortText({ displayName: 'Channel Name', required: true, }), channelDescription: Property.LongText({ displayName: 'Channel Description', required: false, }), }, async run(context) { const { teamId, channelDescription, channelDisplayName } = context.propsValue; const client = createGraphClient(context.auth.access_token); const channel = { displayName: channelDisplayName, description: channelDescription, membershipType: 'private', }; // https://learn.microsoft.com/graph/api/channel-post?view=graph-rest-1.0 return await withGraphRetry(() => client.api(`/teams/${teamId}/channels`).post(channel)); }, });

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