Skip to main content
Glama
StepConfigTab.tsx1.5 kB
import { Integration } from '@superglue/shared'; import { ToolStepConfigurator } from '../../ToolStepConfigurator'; import { type CategorizedSources } from '../../templates/tiptap/TemplateContext'; interface StepConfigTabProps { step: any; evolvingPayload: any; dataSelectorOutput: any | null; categorizedSources?: CategorizedSources; canExecute: boolean; integrations?: Integration[]; onEdit?: (stepId: string, updatedStep: any, isUserInitiated?: boolean) => void; onEditingChange?: (editing: boolean) => void; onOpenFixStepDialog?: () => void; sourceDataVersion?: number; } export function StepConfigTab({ step, evolvingPayload, dataSelectorOutput, categorizedSources, canExecute, integrations, onEdit, onEditingChange, onOpenFixStepDialog, sourceDataVersion, }: StepConfigTabProps) { return ( <div> <ToolStepConfigurator step={step} isLast={true} onEdit={onEdit} onRemove={() => {}} integrations={integrations} onEditingChange={onEditingChange} stepInput={evolvingPayload} dataSelectorOutput={dataSelectorOutput} categorizedSources={categorizedSources} onOpenFixStepDialog={onOpenFixStepDialog} canExecute={canExecute} sourceDataVersion={sourceDataVersion} /> </div> ); }

Latest Blog Posts

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/superglue-ai/superglue'

If you have feedback or need assistance with the MCP directory API, please join our Discord server