Skip to main content
Glama

mcp-google-sheets

piece-icon-from-name.tsx751 B
import { piecesHooks } from '../lib/pieces-hooks'; import { PieceIcon } from './piece-icon'; type PieceIconWithPieceNameProps = { pieceName: string; size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl'; border?: boolean; circle?: boolean; showTooltip?: boolean; }; const PieceIconWithPieceName = ({ pieceName, size = 'md', border = true, circle = true, showTooltip = true, }: PieceIconWithPieceNameProps) => { const { pieceModel } = piecesHooks.usePiece({ name: pieceName, }); return ( <PieceIcon circle={circle} size={size} border={border} displayName={pieceModel?.displayName} logoUrl={pieceModel?.logoUrl} showTooltip={showTooltip} /> ); }; export default PieceIconWithPieceName;

MCP directory API

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