Skip to main content
Glama
scientific-method.d.ts1.85 kB
import { z } from 'zod'; import type { SessionState } from '../state/SessionState.js'; declare const ScientificMethodSchema: z.ZodObject<{ hypothesis: z.ZodString; experimentDesign: z.ZodString; variables: z.ZodObject<{ independent: z.ZodArray<z.ZodString, "many">; dependent: z.ZodArray<z.ZodString, "many">; controlled: z.ZodArray<z.ZodString, "many">; }, "strip", z.ZodTypeAny, { independent: string[]; dependent: string[]; controlled: string[]; }, { independent: string[]; dependent: string[]; controlled: string[]; }>; methodology: z.ZodString; expectedResults: z.ZodString; actualResults: z.ZodOptional<z.ZodString>; analysis: z.ZodOptional<z.ZodString>; conclusion: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { hypothesis: string; experimentDesign: string; variables: { independent: string[]; dependent: string[]; controlled: string[]; }; methodology: string; expectedResults: string; analysis?: string | undefined; conclusion?: string | undefined; actualResults?: string | undefined; }, { hypothesis: string; experimentDesign: string; variables: { independent: string[]; dependent: string[]; controlled: string[]; }; methodology: string; expectedResults: string; analysis?: string | undefined; conclusion?: string | undefined; actualResults?: string | undefined; }>; export type ScientificMethodArgs = z.infer<typeof ScientificMethodSchema>; declare function handleScientificMethod(args: ScientificMethodArgs, session: SessionState): Promise<{ content: { type: "text"; text: string; }[]; }>; export { handleScientificMethod }; //# sourceMappingURL=scientific-method.d.ts.map

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/waldzellai/clearthought-onepointfive'

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