Skip to main content
Glama

mcp-google-sheets

test-step-section.tsx987 B
import { t } from 'i18next'; import { Button } from '../../../components/ui/button'; import { useBuilderStateContext } from '../builder-hooks'; export const TestStepSection = ({ stepName }: { stepName: string }) => { const isTrigger = stepName === 'trigger'; const selectStepByName = useBuilderStateContext( (state) => state.selectStepByName, ); return ( <div className="flex flex-col gap-3 select-none text-center px-12 py-10 flex-grow items-center justify-center "> <div> {isTrigger ? t( 'This trigger needs to have data loaded from your account, to use as sample data.', ) : t('This step needs to be tested in order to view its data.')} </div> <div> <Button onClick={() => selectStepByName(stepName)} variant="default" size="default" > {isTrigger ? t('Go to Trigger') : t('Go to Step')} </Button> </div> </div> ); };

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