We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/bioanywhere/mcp-base-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
schemas.ts•470 B
import { z } from 'zod';
export const Erc20BalanceSchema = z.object({
contractAddress: z
.string()
.describe('The contract address for which to get the balance'),
});
export const Erc20TransferSchema = z.object({
contractAddress: z
.string()
.describe('The address of the contract to transfer the token from'),
toAddress: z.string().describe('The address of the recipient'),
amount: z.string().describe('The amount of tokens to transfer'),
});