We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/tamago-labs/sui-butler'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import { z } from "zod";
export interface SuiConfig {
privateKey?: string;
accessKey?: string;
network: 'testnet' | 'mainnet';
apiUrl: string;
mode: 'private-key' | 'access-key';
}
export interface McpTool {
name: string;
description: string;
schema: any;
handler: any;
}
export interface TokenBalance {
address: string;
name: string;
symbol: string;
decimals: number;
balance: string;
}
export interface TransactionResponse {
digest?: string;
status: string;
}
export interface SwapQuote {
fromToken: string;
toToken: string;
inputAmount: number;
estimatedOutput: number;
}