Skip to main content
Glama

mcp-google-sheets

auth.ts782 B
import { PieceAuth, Property } from "@activepieces/pieces-framework"; import { makeRequest } from "./client"; import { HttpMethod } from "@activepieces/pieces-common"; export const smooveAuth = PieceAuth.SecretText({ displayName: 'smoove API Key', required: true, validate: async ({ auth }) => { if (auth) { try { await makeRequest(auth as string, HttpMethod.GET, '/Lists', {}); 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