Skip to main content
Glama

mcp-google-sheets

index.ts1.25 kB
import { createCustomApiCallAction } from '@activepieces/pieces-common'; import { createPiece } from '@activepieces/pieces-framework'; import { browseAiAuth } from './lib/common/auth'; import { getTaskDetailsAction } from './lib/actions/get-task-details'; import { listRobotsAction } from './lib/actions/list-robots'; import { runRobotAction } from './lib/actions/run-robot'; import { taskFinishedWithErrorTrigger } from './lib/triggers/task-finished-with-error'; import { taskFinishedSuccessfullyTrigger } from './lib/triggers/task-finished-successfully'; import { PieceCategory } from '@activepieces/shared'; export const browseAi = createPiece({ displayName: 'Browse AI', auth: browseAiAuth, minimumSupportedRelease: '0.36.1', logoUrl: 'https://cdn.activepieces.com/pieces/browse-ai.png', categories:[PieceCategory.PRODUCTIVITY], authors: ['aryel780'], actions: [ getTaskDetailsAction, listRobotsAction, runRobotAction, createCustomApiCallAction({ auth: browseAiAuth, baseUrl: () => 'https://api.browse.ai/v2', authMapping: async (auth) => ({ Authorization: `Bearer ${auth}`, }), }), ], triggers: [ taskFinishedWithErrorTrigger, taskFinishedSuccessfullyTrigger, ], });

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