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, Property } from '@activepieces/pieces-framework';
export const bambooHrAuth = PieceAuth.CustomAuth({
required: true,
description:
'Follow [these instructions](https://documentation.bamboohr.com/docs/getting-started#authentication) to get your API key',
props: {
companyDomain: Property.ShortText({
displayName: 'Company domain',
description:
'The subdomain used to access BambooHR. If you access BambooHR at https://mycompany.bamboohr.com, then the companyDomain is "mycompany"',
required: true,
}),
apiKey: PieceAuth.SecretText({
displayName: 'API key',
required: true,
}),
},
});