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 { HttpMethod, createCustomApiCallAction, httpClient } from '@activepieces/pieces-common';
import { PieceAuth, createPiece } from '@activepieces/pieces-framework';
import { getFliqrAccountDetails } from './lib/actions/get-account-details';
import { fliqrConfig } from './lib/common/models';
import { getFliqrAccountFlows } from './lib/actions/get-account-flows';
import { PieceCategory } from '@activepieces/shared';
import { fliqrAuth } from './lib/auth';
export const fliqrAi = createPiece({
displayName: 'Fliqr AI',
description:
'Omnichannel AI chatbot enhancing customer interactions across WhatsApp, Facebook, Instagram, Telegram, and 6 other platforms.',
minimumSupportedRelease: '0.30.0',
logoUrl: 'https://cdn.activepieces.com/pieces/fliqr-ai.png',
authors: ["drona2938"],
categories: [PieceCategory.COMMUNICATION,PieceCategory.CUSTOMER_SUPPORT,PieceCategory.MARKETING],
auth: fliqrAuth,
actions: [ getFliqrAccountDetails,
getFliqrAccountFlows,
createCustomApiCallAction({
baseUrl: () => fliqrConfig.baseUrl,
auth: fliqrAuth,
authMapping: async (auth) => ({
[fliqrConfig.accessTokenHeaderKey]: `${auth}`,
}),
}),
],
triggers: [],
});