Skip to main content
Glama

mcp-google-sheets

create-channel.ts1.12 kB
import { microsoftTeamsAuth } from '../../'; import { createAction, Property } from '@activepieces/pieces-framework'; import { Client } from '@microsoft/microsoft-graph-client'; import { microsoftTeamsCommon } from '../common'; export const createChannelAction = createAction({ auth: microsoftTeamsAuth, name: 'microsoft_teams_create_channel', displayName: 'Create Channel', description: 'Create a new channel in Microsoft Teams.', 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 = Client.initWithMiddleware({ authProvider: { getAccessToken: () => Promise.resolve(context.auth.access_token), }, }); const channel = { displayName: channelDisplayName, description: channelDescription, }; return await 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