← All WebMCP sites

eurodz.com

Finance & Cryptohttps://eurodz.com/listed as of 2026-08-01
EuroDZ tracks Algeria's parallel-market currency exchange rates against the Algerian Dinar (DZD), refreshed daily, with conversion and historical lookups. Its WebMCP tools let an agent fetch the latest rates, convert amounts between DZD and supported currencies, and look up historical EUR rates.
See Ora's auditWe loaded this site in a real browser and scored its tools.

Tools

get-latest-exchange-ratesanswerimperative
Returns the latest supported currency rates in DZD and optional official EUR rates.
Input schema
{
  "type": "object",
  "properties": {
    "currencyCodes": {
      "type": "array",
      "items": {
        "type": "string",
        "enum": [
          "EUR",
          "USD",
          "GBP",
          "CAD",
          "CNY",
          "TRY",
          "CHF",
          "SAR",
          "AED",
          "TND",
          "MAD",
          "DZD"
        ]
      },
      "description": "Optional list of currency codes to return. Defaults to all supported currencies."
    },
    "includeOfficial": {
      "type": "boolean",
      "description": "Whether to include the official EUR rate in the response.",
      "default": true
    }
  },
  "required": []
}
convert-currencyactimperative
Convert amounts between DZD and supported currencies using the latest buy or sell rates.
Input schema
{
  "type": "object",
  "properties": {
    "amount": {
      "type": "number",
      "minimum": 0,
      "description": "Amount to convert."
    },
    "currencyCode": {
      "type": "string",
      "enum": [
        "EUR",
        "USD",
        "GBP",
        "CAD",
        "CNY",
        "TRY",
        "CHF",
        "SAR",
        "AED",
        "TND",
        "MAD"
      ],
      "description": "Currency code to convert to or from DZD."
    },
    "direction": {
      "type": "string",
      "enum": [
        "toDZD",
        "fromDZD"
      ],
      "description": "Conversion direction. Use \"toDZD\" to convert foreign currency into DZD, or \"fromDZD\" to convert DZD into foreign currency."
    },
    "rateType": {
      "type": "string",
      "enum": [
        "buy",
        "sell"
      ],
      "default": "buy",
      "description": "Whether to use the buy or sell rate for conversion."
    }
  },
  "required": [
    "amount",
    "currencyCode",
    "direction"
  ]
}
get-euro-historical-rateanswerimperative
Returns EUR parallel market and official historical rates for a given date.
Input schema
{
  "type": "object",
  "properties": {
    "date": {
      "type": "string",
      "description": "Historical date in YYYY-MM-DD format."
    }
  },
  "required": [
    "date"
  ]
}
Listings are sourced from public community registries and shown as reported.