Skip to main content
Glama

detail

Analyze system structure for concurrency, flow landmarks, resilience, dominator trees, and min-cuts using EN syntax source code.

Instructions

Deep structural analysis — concurrency, flow landmarks, resilience, dominator tree, min-cuts.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
sourceYesEN source code describing the system

Implementation Reference

  • The 'detail' tool is registered and implemented in src/index.ts, delegating the execution to the 'callApi' helper function.
    server.tool(
      "detail",
      "Deep structural analysis — concurrency, flow landmarks, resilience, dominator tree, min-cuts.",
      {
        source: z.string().describe("EN source code describing the system"),
      },
      async ({ source }) => {
        const result = await callApi("detail", { source });
        return {
          content: [{ type: "text" as const, text: result.text }],
          isError: result.isError,
        };
      }
    );

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/dushyant30suthar/endiagram-mcp'

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