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
import { PieceAuth } from "@activepieces/pieces-framework";
import { httpClient, HttpMethod } from "@activepieces/pieces-common";
import { BASE_URL } from "./constants";
export const altTextAiAuth = PieceAuth.SecretText({
displayName: 'API Key',
required: true,
description: `You can obtain your API key from [Account Settings](https://alttext.ai/account/api_keys).`,
validate: async ({ auth }) => {
try {
await httpClient.sendRequest({
method: HttpMethod.GET,
url: BASE_URL + '/account',
headers: {
'X-API-Key': auth
}
})
return {
valid: true
}
} catch {
return {
valid: false,
error: 'Invalid API Key'
}
}
}
})