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 { createCustomApiCallAction } from '@activepieces/pieces-common';
const auth = PieceAuth.SecretText({
displayName: "API Key",
required: true,
})
export const pylon = createPiece({
displayName: "Pylon",
auth,
minimumSupportedRelease: '0.36.1',
logoUrl: "https://cdn.activepieces.com/pieces/pylon.png",
authors: [],
actions: [
createCustomApiCallAction({
auth: auth,
baseUrl: () => 'https://api.usepylon.com',
authMapping: async (auth) => {
return {
Authorization: `Bearer ${auth}`,
};
},
})
],
triggers: [],
});