Skip to main content
Glama

deep_analysis

Analyze ACP agent addresses to identify risk signals, behavioral patterns, and percentile rankings for comprehensive due diligence.

Instructions

Get deep trust analysis for an ACP agent address. Returns detailed breakdown with percentile rankings, risk signals, and behavioral patterns. Use this for thorough due diligence.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
addressYesEthereum/Base wallet address (0x...) of the agent

Implementation Reference

  • Implementation of the "deep_analysis" MCP tool which queries the Maiat SDK's 'sdk.deep' method.
    // ---- Tool: deep_analysis ----
    server.tool(
      "deep_analysis",
      "Get deep trust analysis for an ACP agent address. Returns detailed breakdown with percentile rankings, risk signals, and behavioral patterns. Use this for thorough due diligence.",
      {
        address: z
          .string()
          .describe("Ethereum/Base wallet address (0x...) of the agent"),
      },
      async ({ address }) => {
        try {
          const data = await sdk.deep(address);
          return {
            content: [
              {
                type: "text" as const,
                text: JSON.stringify(data, null, 2),
              },
            ],
          };
        } catch (err) {
          return {
            content: [
              {
                type: "text" as const,
                text: JSON.stringify({
                  error: err instanceof Error ? err.message : String(err),
                  address,
                }),
              },
            ],
          };
        }
      }
    );

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/JhiNResH/maiat-protocol'

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