UNPKG

@iqai/mcp-atp

Version:

Mcp server for ATP (IQAI's Agent Tokenization Platform) access

10 lines (9 loc) 288 B
import type { Agent } from "../types.js"; export interface GetAgentsParams { sort?: "mcap" | "holders" | "inferences"; limit?: number; } export declare class GetAgentsService { getAgents(params: GetAgentsParams): Promise<Agent[]>; formatAgents(agents: Agent[]): string; }