UNPKG

@myronkoch/osmosis-mcp-server

Version:

A comprehensive MCP server for interacting with the Osmosis blockchain - 158 tools covering DeFi, staking, governance, and more

50 lines (49 loc) 1.58 kB
export const testnetTools = [ { name: "get-testnet-tokens", description: "Get instructions and links to obtain Osmosis testnet tokens for testing", inputSchema: { type: "object", properties: { address: { type: "string", description: "Osmosis testnet address to fund (optional - will provide general instructions if not specified)" }, amount: { type: "string", description: "Amount of tokens needed (for reference only)", default: "1000000" } }, required: [] } }, { name: "testnet-faucet", description: "Get Osmosis testnet tokens from the official faucet", inputSchema: { type: "object", properties: { address: { type: "string", description: "Osmosis testnet address to receive tokens" }, amount: { type: "string", description: "Amount to request (in uosmo)", default: "10000000" } }, required: ["address"] } }, { name: "check-testnet-status", description: "Check if the current network is testnet and display testnet information", inputSchema: { type: "object", properties: {}, required: [] } } ];