{
  "name": "brale-network-api",
  "description": "Public API for stablecoin and branded asset data — value types, transfer types, prices, token lists, and analytics.",
  "version": "1.3.0",
  "serverUrl": "https://brale.network/api/mcp",
  "serverInfo": {
    "name": "brale-network-api",
    "version": "1.3.0",
    "description": "Public API for stablecoin and branded asset data — value types, transfer types, prices, token lists, and analytics."
  },
  "transport": {
    "type": "streamable-http",
    "endpoint": "https://brale.network/api/mcp"
  },
  "tools": [
    {
      "name": "list-value-types",
      "description": "List all value types (stablecoins and branded assets) on the platform",
      "endpoint": "https://brale.network/api/value-type/list",
      "method": "GET",
      "inputSchema": {
        "type": "object",
        "properties": {},
        "required": []
      }
    },
    {
      "name": "get-value-type",
      "description": "Get a single value type by symbol or ID (e.g. sbc, usdc, cfusd). Case-insensitive.",
      "endpoint": "https://brale.network/api/value-type/{id}",
      "method": "GET",
      "inputSchema": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Value type symbol or asset ID (e.g. 'sbc', 'usdc', 'cfusd')"
          }
        },
        "required": ["id"]
      }
    },
    {
      "name": "list-transfer-types",
      "description": "List all transfer types (blockchains and ledgers) on the platform",
      "endpoint": "https://brale.network/api/transfer-type/list",
      "method": "GET",
      "inputSchema": {
        "type": "object",
        "properties": {},
        "required": []
      }
    },
    {
      "name": "get-transfer-type",
      "description": "Get a single transfer type by slug or ID (e.g. base, solana, polygon)",
      "endpoint": "https://brale.network/api/transfer-type/{id}",
      "method": "GET",
      "inputSchema": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Transfer type slug or chain ID (e.g. 'base', 'solana', 'polygon')"
          }
        },
        "required": ["id"]
      }
    },
    {
      "name": "list-prices",
      "description": "Get reference prices for all value types",
      "endpoint": "https://brale.network/api/price/list",
      "method": "GET",
      "inputSchema": {
        "type": "object",
        "properties": {},
        "required": []
      }
    },
    {
      "name": "get-price",
      "description": "Get the reference price for a specific value type",
      "endpoint": "https://brale.network/api/price/{value_type}",
      "method": "GET",
      "inputSchema": {
        "type": "object",
        "properties": {
          "value_type": {
            "type": "string",
            "description": "Value type symbol (e.g. 'sbc', 'usdc')"
          }
        },
        "required": ["value_type"]
      }
    },
    {
      "name": "get-llm-context",
      "description": "Get full platform context optimized for AI/LLM consumption — all value types, transfer types, contract addresses, and metadata in one response",
      "endpoint": "https://brale.network/api/llms/static-context.json",
      "method": "GET",
      "inputSchema": {
        "type": "object",
        "properties": {},
        "required": []
      }
    }
  ],
  "capabilities": {
    "tools": true,
    "resources": false,
    "prompts": false
  },
  "authentication": {
    "type": "none",
    "description": "All endpoints are free and open. No authentication required."
  }
}
