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 { createPiece, PieceAuth } from '@activepieces/pieces-framework';
import { denserAiAuth } from './lib/common/auth';
import { PieceCategory } from '@activepieces/shared';
import { processInputText } from './lib/actions/process-input-text';
export const denserAi = createPiece({
displayName: 'Denser.ai',
auth: denserAiAuth,
minimumSupportedRelease: '0.36.1',
logoUrl: 'https://cdn.activepieces.com/pieces/denser-ai.png',
categories: [PieceCategory.ARTIFICIAL_INTELLIGENCE],
authors: ['sanket-a11y'],
actions: [processInputText],
triggers: [],
});