Skip to main content
Glama

mcp-google-sheets

get-a-bucket.ts769 B
import { createAction } from '@activepieces/pieces-framework'; import { microsoft365PlannerAuth, microsoft365PlannerCommon } from '../common'; import { BucketDropdown, PlanDropdown } from '../common/properties'; export const getABucket = createAction({ auth: microsoft365PlannerAuth, name: 'getABucket', displayName: 'Get a Bucket', description: 'Retrieve details about a specific bucket.', props: { planId: PlanDropdown({ required: true }), bucketId: BucketDropdown({ required: true }), }, async run({ auth, propsValue: { bucketId } }) { if (!bucketId) { throw new Error('Bucket ID is required to fetch bucket details.'); } return await microsoft365PlannerCommon.getBucketDetails({ auth, bucketId, }); }, });

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