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 { runAgent } from "./lib/actions/run-agent";
import { PieceCategory } from "@activepieces/shared";
export const agent = createPiece({
displayName: "Agent",
auth: PieceAuth.None(),
minimumSupportedRelease: '0.71.0',
logoUrl: "https://cdn.activepieces.com/pieces/agent.png",
authors: ['Gamal72', 'abuaboud', 'amrdb'],
description: "Let an AI assistant help you with tasks using tools.",
actions: [runAgent],
triggers: [],
categories: [PieceCategory.UNIVERSAL_AI],
});