Skip to main content
Glama

MCP Ollama Consult Server

by Atomic-Germ
types.ts1.04 kB
export interface Step { id?: string; name?: string; model?: string; // Ollama model name tool?: string; // tool name registered in the runtime prompt?: string; system_prompt?: string; condition?: string; memoryWrite?: string | string[]; // key(s) to write the step output to retries?: number; backoffMs?: number; dependsOn?: string[] | string; // DAG dependency (one or many parent step ids) // snake_case support // depends_on is supported at runtime by reading properties dynamically timeoutMs?: number; onSuccess?: string[]; onFailure?: string[]; } export interface Flow { id: string; name?: string; steps: Step[]; } export interface StepResult { stepId: string; success: boolean; output?: any; error?: string; attempts?: number; skipped?: boolean; } export interface ExecutionContext { flowId: string; stepResults: Record<string, StepResult>; memory: Record<string, any>; variables: Record<string, any>; } export type MemoryData = Record<string, any>; export default {};

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/Atomic-Germ/mcp-consult'

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