Skip to main content
Glama
auth.ts777 B
import { PieceAuth } from '@activepieces/pieces-framework'; import { makeRequest } from './client'; import { HttpMethod } from '@activepieces/pieces-common'; export const gladiaAuth = PieceAuth.SecretText({ displayName: 'Gladia API Key', description: ` Enter your Gladia API Key. You can find it in your Gladia account (https://app.gladia.io/apikeys). `, required: true, validate: async ({ auth }) => { if (auth) { try { await makeRequest(auth as string, HttpMethod.GET, '/transcription'); return { valid: true, }; } catch (error) { return { valid: false, error: 'Invalid Api Key', }; } } return { valid: false, error: 'Invalid Api Key', }; }, });

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