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
| Name | Required | Description | Default |
|---|---|---|---|
| address | Yes | Ethereum/Base wallet address (0x...) of the agent |
Implementation Reference
- packages/mcp-server/src/index.ts:93-127 (handler)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, }), }, ], }; } } );