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 { matchPerson } from "./lib/actions/match-person";
import { enrichCompany } from "./lib/actions/enrich-company";
export const apolloAuth = PieceAuth.SecretText({
displayName: 'API Key',
required: true,
});
export const apollo = createPiece({
displayName: "Apollo",
auth: apolloAuth,
minimumSupportedRelease: '0.30.0',
logoUrl: "https://cdn.activepieces.com/pieces/apollo.png",
authors: ['abuaboud'],
actions: [matchPerson, enrichCompany],
triggers: [],
});