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 { PieceAuth, createPiece } from '@activepieces/pieces-framework';
import { fetchCryptoPairPrice } from './lib/actions/fetch-pair-price';
export const binance = createPiece({
displayName: 'Binance',
description: 'Fetch the price of a crypto pair from Binance',
minimumSupportedRelease: '0.30.0',
logoUrl: 'https://cdn.activepieces.com/pieces/binance.png',
categories: [],
auth: PieceAuth.None(),
actions: [fetchCryptoPairPrice],
authors: ["kishanprmr","khaledmashaly","abuaboud"],
triggers: [],
});