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 { startBrowsingTask } from "./lib/actions/start-browsing-task";
export const twinLabsAuth = PieceAuth.SecretText({
displayName:'API Key',
required:true,
description:"Please use ***your-twin-labs-api-key*** as value for API Key"
});
export const twinLabs = createPiece({
displayName: "Twin Web Agent",
auth: twinLabsAuth,
minimumSupportedRelease: '0.20.0',
logoUrl: "https://cdn.activepieces.com/pieces/twin-labs.png",
authors: [],
actions: [startBrowsingTask],
triggers: [],
});