Skip to main content
Glama

Get Self-Dialectical AI Methodology

get_methodology

Retrieve the canonical Self-Dialectical AI Systems methodology with HUMMBL Base120 mappings for structured problem-solving.

Instructions

Retrieve the canonical Self-Dialectical AI Systems methodology with HUMMBL Base120 mappings.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
titleYes
versionYes
summaryYes
documentUrlNo
totalPagesNo
modelsReferencedYes
stagesYes
metaModelsYes

Implementation Reference

  • Registration of the 'get_methodology' tool on the MCP server with input/output schemas and handler.
    export function registerMethodologyTools(server: McpServer): void {
      // Tool: Get Self-Dialectical AI Methodology definition
      server.registerTool(
        "get_methodology",
        {
          title: "Get Self-Dialectical AI Methodology",
          description:
            "Retrieve the canonical Self-Dialectical AI Systems methodology with HUMMBL Base120 mappings.",
          inputSchema: z.object({}),
          outputSchema: z.object({
            id: z.string(),
            title: z.string(),
            version: z.string(),
            summary: z.string(),
            documentUrl: z.string().optional(),
            totalPages: z.number().optional(),
            modelsReferenced: z.array(z.string()),
            stages: z.array(
              z.object({
                stage: z.enum(["thesis", "antithesis", "synthesis", "convergence", "meta_reflection"]),
                title: z.string(),
                description: z.string(),
                modelCodes: z.array(z.string()),
              })
            ),
            metaModels: z.array(z.string()),
          }),
        },
        async () => {
          const result = getSelfDialecticalMethodology();
    
          if (!isOk(result)) {
            return {
              content: [
                {
                  type: "text" as const,
                  text: `Unable to retrieve Self-Dialectical methodology: ${result.error.type}`,
                },
              ],
              isError: true as const,
            };
          }
    
          const methodology = result.value;
    
          return {
            content: [
              {
                type: "text" as const,
                text: JSON.stringify(methodology, null, 2),
              },
            ],
            structuredContent: methodology as unknown as { [key: string]: unknown },
          };
        }
      );
  • Core handler: getSelfDialecticalMethodology() returns the DialecticalMethodology constant.
    export function getSelfDialecticalMethodology(): Result<DialecticalMethodology, DomainError> {
      return ok(SELF_DIALECTICAL_METHODOLOGY);
    }
  • The actual methodology data (SELF_DIALECTICAL_METHODOLOGY) including id, version, stages, models.
    export const SELF_DIALECTICAL_METHODOLOGY: DialecticalMethodology = {
      id: METHODOLOGY_ID,
      title: "Self-Dialectical AI Systems: A HUMMBL-Informed Methodology for Ethical Self-Correction",
      version: METHODOLOGY_VERSION,
      summary:
        "Enables AI systems to perform ethical self-correction through structured dialectical reasoning integrated with HUMMBL Base120 mental models.",
      documentUrl: undefined,
      totalPages: 60,
      modelsReferenced: [
        "P1",
        "P2",
        "DE3",
        "IN11",
        "IN2",
        "IN10",
        "CO4",
        "CO1",
        "CO20",
        "RE11",
        "RE15",
        "RE1",
        "RE7",
        "RE3",
        "RE16",
        "SY19",
        "SY1",
      ],
      stages: [
        {
          stage: "thesis",
          title: "Stage 1: Thesis Generation",
          description: "Generate and structure the initial ethical position.",
          modelCodes: ["P1", "P2", "DE3"],
        },
        {
          stage: "antithesis",
          title: "Stage 2: Antithesis Development",
          description:
            "Critique thesis via adversarial reasoning, premortem analysis, and red teaming.",
          modelCodes: ["IN11", "IN2", "IN10"],
        },
        {
          stage: "synthesis",
          title: "Stage 3: Synthesis Formation",
          description:
            "Integrate thesis and antithesis into a higher-order resolution across perspectives.",
          modelCodes: ["CO4", "CO1", "CO20"],
        },
        {
          stage: "convergence",
          title: "Stage 4: Convergence Testing",
          description:
            "Test and refine synthesis via calibration loops, convergence/divergence, and recursive improvement.",
          modelCodes: ["RE11", "RE15", "RE1"],
        },
        {
          stage: "meta_reflection",
          title: "Stage 5: Meta-Reflection",
          description:
            "Reflect on and improve the reasoning process itself via self-referential logic and meta-learning.",
          modelCodes: ["RE7", "RE3", "RE16"],
        },
      ],
      metaModels: ["SY19", "SY1"],
    };
  • Type definition for DialecticalMethodology used as the output schema.
    export interface DialecticalMethodology {
      id: string;
      title: string;
      version: string;
      summary: string;
      documentUrl?: string;
      totalPages?: number;
      modelsReferenced: string[];
      stages: StageModelMapping[];
      metaModels: string[];
    }
  • DialecticalStageId and StageModelMapping types supporting the methodology schema.
    export type DialecticalStageId =
      | "thesis"
      | "antithesis"
      | "synthesis"
      | "convergence"
      | "meta_reflection";
    
    export interface StageModelMapping {
      stage: DialecticalStageId;
      title: string;
      description: string;
      modelCodes: string[];
    }
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries full burden. It implies a read operation ('Retrieve') but does not disclose any behavioral traits such as auth requirements, rate limits, or whether it returns metadata. It is adequate but not comprehensive.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single, well-structured sentence that immediately conveys the tool's purpose. No redundant or extraneous information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple retrieval tool with no parameters and an output schema, the description is fairly complete. It names the specific resource and mentions the mappings. However, it lacks usage context, such as when to prefer this over similar tools.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has 0 parameters, so schema coverage is 100%. The description adds meaning by specifying what is retrieved (the methodology and mappings), which goes beyond the empty schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'Retrieve' and specifies the resource: 'the canonical Self-Dialectical AI Systems methodology with HUMMBL Base120 mappings'. This distinguishes it from sibling tools like get_model or get_transformation, which retrieve different resources.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is provided on when to use this tool versus alternatives. It does not mention prerequisites, exclusions, or scenarios where other tools would be more appropriate.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

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/hummbl-dev/mcp-server'

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