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 { executeSuiCommand } from './executor';
export const getAddresses = async () => {
return executeSuiCommand('client', ['addresses']);
};
export const getActiveAddress = async () => {
return executeSuiCommand('client', ['active-address']);
};
export const switchAddress = async (address: string) => {
return executeSuiCommand('client', ['switch', '--address', address]);
};