Skip to main content
Glama
auth.ts876 B
import { PieceAuth } from '@activepieces/pieces-framework'; import { AuthenticationType, httpClient, HttpMethod, } from '@activepieces/pieces-common'; import { BASE_URL } from './constants'; export const chatnodeAuth = PieceAuth.SecretText({ displayName: 'API Key', required: true, description: 'To generate an API key, go to Team Settings and navigate to the API Access tab. There, you’ll find the option to generate a new API key.', validate: async ({ auth }) => { try { await httpClient.sendRequest({ method: HttpMethod.GET, url: BASE_URL + '/auth_me', authentication: { type: AuthenticationType.BEARER_TOKEN, token: auth, }, }); return { valid: true, }; } catch { return { valid: false, error: 'Invalid API Key', }; } }, });

Latest Blog Posts

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