Skip to main content
Glama

mcp-google-sheets

branch-condition-toolbar.tsx911 B
import { t } from 'i18next'; import { Button } from '@/components/ui/button'; type BranchConditionToolbarProps = { onAnd: () => void; onOr: () => void; showOr: boolean; showAnd: boolean; readonly: boolean; }; const BranchConditionToolbar = (props: BranchConditionToolbarProps) => { return ( <div className="flex gap-2 text-center justify-end"> {props.showAnd && ( <Button variant="basic" size="sm" onClick={props.onAnd} disabled={props.readonly} > {t('+ And')} </Button> )} {props.showOr && ( <Button variant="basic" size="sm" onClick={props.onOr} disabled={props.readonly} > {t('+ Or')} </Button> )} </div> ); }; BranchConditionToolbar.displayName = 'BranchConditionToolbar'; export { BranchConditionToolbar };

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