Skip to main content
Glama

mcp-google-sheets

auth.ts753 B
import { PieceAuth } from '@activepieces/pieces-framework'; import { HttpMethod } from '@activepieces/pieces-common'; import { makeRequest } from './client'; export const SoftrAuth = PieceAuth.SecretText({ displayName: 'API Key', description: `You can obtain your API key from [API Settings](https://studio.softr.io/user/apisettings).`, required: true, validate: async ({ auth }) => { if (auth) { try { await makeRequest(auth as string, HttpMethod.GET, '/databases'); 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