Skip to main content
Glama

MCP Agent TypeScript Port

by waldzellai
baseWorkflow.d.ts848 B
import { McpContext, ContextManager } from '../context/index'; import { Logger } from '../logging/index'; import { BaseExecutor } from '../executor/index'; export interface WorkflowStep { id: string; name: string; execute: (context: McpContext) => Promise<unknown>; } export declare abstract class BaseWorkflow { protected id: string; protected name: string; protected steps: WorkflowStep[]; protected executor: BaseExecutor; protected logger: Logger; protected contextManager: ContextManager; constructor(id: string, name: string); addStep(step: WorkflowStep): void; execute(): Promise<unknown[]>; getWorkflowMetadata(): { id: string; name: string; stepCount: number; }; } export declare class SimpleDataProcessingWorkflow extends BaseWorkflow { constructor(); }

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/waldzellai/mcp-agent-ts'

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