eudr

Compile EUDR Annex II Due Diligence Statements from operator, supplier, and plot geolocation.

Quality & Safety

A
Description quality
100%
Schema completeness
83%
Naming quality
80%
Poisoning risk
100%
Permission match
90%
Protocol compliance
100%

Findings (1)

  • LOWTool 'eudr_fetch_evidence' suggests web access but openWorldHint=falsein eudr_fetch_evidence

Based on automated analysis of tool definitions and protocol compliance.

Context Cost

~6,273Tokens (tool definitions)
~3.1 KBTypical response size
Significant attention impact (4.90% of 128k context)

This is the approximate number of tokens consumed each time the server's tools are loaded into a model's context. Higher counts reduce the attention available for other tasks.

Rate this Server

One-Click Install

Add this to your `claude_desktop_config.json` file:

{
  "mcpServers": {
    "eudr": {
      "url": "https://eudr.dev/mcp"
    }
  }
}

Remote endpoints

https://eudr.dev/mcpstreamable-http

Tool inventory

Tools (16)

🟢 Read-only🟡 Write🔴 Delete⚪ Unknown
🟢eudr_check_plots(geojson, plots, commodity, country, hs_code, ...)

Check up to eight production plots for forest loss after 31 December 2020, the cut-off in Regulation (EU) 2023/1115. Takes GeoJSON boundaries, the commodity, and the country of production. Returns a per-plot verdict, the loss years observed, how much of each plot was inspected, and a handle for the underlying satellite evidence. This answers Article 3(a) only: it does not check land tenure, permits, consent, or chain of custody, and it lists those gaps on every response. This has side effects, though it writes nothing to the organisation's records and costs no credits: every call asks emem.dev to make freshly signed measurements, so repeating a check returns the same finding under new signatures, and mints a short-lived evidence handle held on this server for 24 hours, which eudr_fetch_evidence resolves and which a later check will not reproduce.

Input Schema

{
  "type": "object",
  "properties": {
    "geojson": {
      "type": "object",
      "description": "One plot, as a GeoJSON Polygon, MultiPolygon or Point in WGS84 (EPSG:4326). Article 2(28) requires six decimal places. A Point is admissible only for a plot under four hectares that is not forest. Supply this or `plots`."
    },
    "plots": {
      "type": "array",
      "minItems": 1,
      "maxItems": 8,
      "description": "Several plots checked together, each keeping its own verdict. Use this when a consignment draws on more than one plot.",
      "items": {
        "type": "object",
        "required": [
          "geojson"
        ],
        "additionalProperties": false,
        "properties": {
          "plot_id": {
            "type": "string",
            "maxLength": 64,
            "description": "Your identifier for the plot, echoed on its verdict row. Letters, digits and -_.: only."
          },
          "geojson": {
            "type": "object",
            "description": "GeoJSON Polygon, MultiPolygon or Point in WGS84."
          }
        }
      }
    },
    "commodity": {
      "type": "string",
      "enum": [
        "cattle",
        "cocoa",
        "coffee",
        "oil_palm",
        "rubber",
        "soya",
        "wood"
      ],
      "description": "The Annex I commodity produced on the plot."
    },
    "country": {
      "type": "string",
      "pattern": "^[A-Za-z]{2}$",
      "description": "ISO-3166-1 alpha-2 code of the country of production. It sets the benchmark risk tier."
    },
    "hs_code": {
      "type": "string",
      "description": "Optional HS code, 2 to 8 digits. Overrides the commodity-to-Annex-I mapping."
    },
    "quantity_kg": {
      "type": "number",
      "minimum": 0,
      "description": "Optional net mass of the consignment. It does not affect the verdict."
    }
  },
  "required": [
    "commodity",
    "country"
  ],
  "additionalProperties": false
}

Output Schema

{
  "type": "object",
  "properties": {
    "finding": {
      "type": "string"
    },
    "deforestation_free": {
      "type": "boolean"
    },
    "verdict": {
      "type": "string",
      "enum": [
        "negligible",
        "non_negligible",
        "not_in_scope",
        "indeterminate"
      ]
    },
    "cut_off_date": {
      "type": "string"
    },
    "country_risk_tier": {
      "type": "string"
    },
    "risk_score": {
      "type": [
        "number",
        "null"
      ]
    },
    "per_plot": {
      "type": "array",
      "items": {
        "type": "object"
      }
    },
    "coverage": {
      "type": "object"
    },
    "observed": {
      "type": "object"
    },
    "unresolved_checks": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "scope_note": {
      "type": "string"
    },
    "next_action": {
      "type": "string"
    },
    "evidence": {
      "type": "object",
      "required": [
        "evidence_cid",
        "fact_count"
      ],
      "description": "fact_count is always present. It is a count of facts that exist, not of facts shipped: the conversational surface carries the address rather than the list.",
      "properties": {
        "evidence_cid": {
          "type": [
            "string",
            "null"
          ]
        },
        "fact_count": {
          "type": "integer"
        },
        "responder_pubkey_b32": {
          "type": [
            "string",
            "null"
          ]
        },
        "algorithm": {
          "type": [
            "string",
            "null"
          ]
        },
        "fetch_with": {
          "type": "string"
        },
        "verify_at": {
          "type": "string"
        }
      }
    },
    "engine": {
      "type": "string"
    }
  },
  "required": [
    "finding",
    "deforestation_free",
    "verdict",
    "cut_off_date",
    "per_plot",
    "coverage",
    "observed",
    "unresolved_checks",
    "scope_note",
    "next_action",
    "evidence",
    "engine"
  ]
}
🟢eudr_fetch_evidence(evidence_cid, offset, limit)

Retrieve the signed satellite facts behind a completed check, a page at a time, using the `evidence_cid` that check returned. Each entry is a content address that resolves at emem.dev and verifies offline against the responder's key. Use this when someone needs to audit or cite the evidence, not to summarise a result.

Input Schema

{
  "type": "object",
  "properties": {
    "evidence_cid": {
      "type": "string",
      "maxLength": 128,
      "description": "The handle returned by eudr_check_plots."
    },
    "offset": {
      "type": "integer",
      "minimum": 0,
      "description": "Index to start from. Defaults to 0."
    },
    "limit": {
      "type": "integer",
      "minimum": 1,
      "maximum": 200,
      "description": "How many facts to return, up to 200. Defaults to 50."
    }
  },
  "required": [
    "evidence_cid"
  ],
  "additionalProperties": false
}

Output Schema

{
  "type": "object",
  "properties": {
    "evidence_cid": {
      "type": "string"
    },
    "minted_at": {
      "type": "string"
    },
    "responder_pubkey_b32": {
      "type": [
        "string",
        "null"
      ]
    },
    "algorithm": {
      "type": [
        "string",
        "null"
      ]
    },
    "total": {
      "type": "integer"
    },
    "offset": {
      "type": "integer"
    },
    "returned": {
      "type": "integer"
    },
    "next_offset": {
      "type": [
        "integer",
        "null"
      ]
    },
    "fact_cids": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "resolve_one_at": {
      "type": "string"
    },
    "verify_at": {
      "type": "string"
    },
    "note": {
      "type": "string"
    }
  },
  "required": [
    "evidence_cid",
    "total",
    "offset",
    "returned",
    "fact_cids"
  ]
}
🟢eudr_assess_evidence_gaps(suppliers)

Check what each supplier's file is still missing against Article 9(1) of Regulation (EU) 2023/1115, the closed list of information an operator must hold before filing. Returns the unmet items with their article reference and what to request, separating items that block filing from items that merely leave the file incomplete. This is a checklist over the fields you supply; it reads no documents and judges no evidence.

Input Schema

{
  "type": "object",
  "properties": {
    "suppliers": {
      "type": "array",
      "minItems": 1,
      "maxItems": 50,
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "name": {
            "type": "string",
            "description": "Supplier's legal or trading name."
          },
          "id": {
            "type": "string",
            "description": "Your reference for the supplier."
          },
          "address": {
            "type": "string",
            "description": "Postal address (Article 9(1)(d))."
          },
          "email": {
            "type": "string",
            "description": "Email address (Article 9(1)(d))."
          },
          "country_of_production": {
            "type": "string",
            "pattern": "^[A-Za-z]{2}$",
            "description": "ISO-3166-1 alpha-2."
          },
          "subnational_region": {
            "type": "string"
          },
          "commodity": {
            "type": "string",
            "enum": [
              "cattle",
              "cocoa",
              "coffee",
              "oil_palm",
              "rubber",
              "soya",
              "wood"
            ]
          },
          "hs_code": {
            "type": "string"
          },
          "product_description": {
            "type": "string"
          },
          "quantity_kg": {
            "type": "number",
            "minimum": 0
          },
          "scientific_name": {
            "type": "string",
            "description": "Required for wood under Article 9(1)(a)."
          },
          "plots_declared": {
            "type": "integer",
            "minimum": 0,
            "description": "How many plots the supplier says the goods come from."
          },
          "plots_with_geolocation": {
            "type": "integer",
            "minimum": 0,
            "description": "How many of those you hold coordinates for."
          },
          "production_date_range": {
            "type": "string",
            "description": "Harvest or production dates, ideally YYYY-MM-DD/YYYY-MM-DD."
          },
          "deforestation_evidence": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "References to evidence already held, such as an evidence_cid or a receipt CID."
          },
          "legality_documents": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Legality documents held. Recognised slugs: land_use_rights, environmental_permit, forest_permit, third_party_rights, fpic, labour_compliance, tax_and_trade."
          }
        }
      }
    }
  },
  "required": [
    "suppliers"
  ],
  "additionalProperties": false
}

Output Schema

{
  "type": "object",
  "properties": {
    "checked": {
      "type": "integer"
    },
    "incomplete": {
      "type": "integer"
    },
    "blocked_from_filing": {
      "type": "integer"
    },
    "summary": {
      "type": "string"
    },
    "suppliers": {
      "type": "array",
      "description": "One row per supplier: status, gaps with their article limb and the request to send, blocking_gaps, held limbs, country tier.",
      "items": {
        "type": "object"
      }
    },
    "basis": {
      "type": "string"
    },
    "scope_note": {
      "type": "string"
    }
  },
  "required": [
    "checked",
    "incomplete",
    "blocked_from_filing",
    "summary",
    "suppliers",
    "basis",
    "scope_note"
  ]
}
🟢eudr_lookup_reference(kind, country)

Look up the country benchmark tier under Implementing Regulation (EU) 2025/1093, or the Annex I commodity to HS-code mapping under Regulation (EU) 2023/1115. Returns the table this engine actually evaluates against, with its source and the date it was verified.

Input Schema

{
  "type": "object",
  "properties": {
    "kind": {
      "type": "string",
      "enum": [
        "country_risk",
        "commodities"
      ],
      "description": "`country_risk` for the benchmark tiers, `commodities` for the Annex I mapping."
    },
    "country": {
      "type": "string",
      "pattern": "^[A-Za-z]{2}$",
      "description": "With kind=country_risk, return just this country's tier instead of the whole table."
    }
  },
  "required": [
    "kind"
  ],
  "additionalProperties": false
}

Output Schema

{
  "type": "object",
  "properties": {
    "kind": {
      "type": "string",
      "enum": [
        "country_risk",
        "commodities"
      ]
    },
    "country": {
      "type": "string"
    },
    "tier": {
      "type": "string",
      "enum": [
        "low",
        "standard",
        "high"
      ]
    },
    "simplified_due_diligence_available": {
      "type": "boolean"
    },
    "high_risk": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "low_risk": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "commodities": {
      "type": "array",
      "items": {
        "type": "object"
      }
    },
    "reference": {
      "type": "object"
    },
    "basis": {
      "type": "string"
    },
    "note": {
      "type": "string"
    }
  },
  "required": [
    "kind"
  ]
}
🟢eudr_verify_receipt(receipt)

Verify a statement receipt: re-derive its content address from the canonical payload and check the ed25519 signature. Use it on a receipt a counterparty hands you. A valid signature establishes who signed and that the bytes are unchanged; it does not establish that the claim inside is true.

Input Schema

{
  "type": "object",
  "properties": {
    "receipt": {
      "type": "object",
      "description": "The receipt as issued: schema, cid, payload, canonical_b64, signature_b64, signer, signed_at."
    }
  },
  "required": [
    "receipt"
  ],
  "additionalProperties": false
}

Output Schema

{
  "type": "object",
  "properties": {
    "valid": {
      "type": "boolean"
    },
    "reason": {
      "type": "string"
    },
    "cid": {
      "type": [
        "string",
        "null"
      ]
    },
    "signer": {
      "type": [
        "string",
        "null"
      ]
    },
    "signed_at": {
      "type": [
        "string",
        "null"
      ]
    },
    "note": {
      "type": "string"
    }
  },
  "required": [
    "valid",
    "note"
  ]
}
🔴eudr_prepare_dds(operator, supplier, product, geolocation, producer)

Compile and sign an Annex II Due Diligence Statement. This WRITES: it stores a compile task holding the operator and supplier details you pass, and sends the plot geometry, HS code, country and quantity to emem.dev to be measured and independently signed. Operator and supplier identity are not forwarded upstream. Returns a task handle; read the outcome with eudr_get_dds. Nothing is filed with any authority. Confirm the details with the user first. Costs 5 credits from the organisation's wallet, refunded automatically if the compile fails; every other tool here is free.

Input Schema

{
  "type": "object",
  "properties": {
    "operator": {
      "type": "object",
      "required": [
        "name",
        "country_of_establishment"
      ],
      "additionalProperties": false,
      "properties": {
        "name": {
          "type": "string"
        },
        "country_of_establishment": {
          "type": "string",
          "pattern": "^[A-Za-z]{2}$"
        },
        "address": {
          "type": "string"
        },
        "eori": {
          "type": "string",
          "description": "EORI number, where the consignment crosses the EU customs border."
        },
        "role": {
          "type": "string",
          "enum": [
            "operator",
            "trader_as_operator",
            "downstream_operator",
            "sme_trader"
          ]
        }
      }
    },
    "supplier": {
      "type": "object",
      "required": [
        "name",
        "id"
      ],
      "additionalProperties": false,
      "properties": {
        "name": {
          "type": "string"
        },
        "id": {
          "type": "string"
        },
        "country": {
          "type": "string",
          "pattern": "^[A-Za-z]{2}$"
        },
        "address": {
          "type": "string"
        },
        "email": {
          "type": "string"
        }
      }
    },
    "product": {
      "type": "object",
      "required": [
        "hs_code",
        "description",
        "net_mass_kg"
      ],
      "additionalProperties": false,
      "properties": {
        "hs_code": {
          "type": "string",
          "description": "2 to 8 digits, dot-separated, e.g. 1801.00."
        },
        "description": {
          "type": "string"
        },
        "net_mass_kg": {
          "type": "number",
          "minimum": 0
        },
        "trade_name": {
          "type": "string"
        },
        "scientific_name": {
          "type": "string"
        }
      }
    },
    "geolocation": {
      "type": "object",
      "required": [
        "country",
        "harvest_window",
        "plot_geojson"
      ],
      "additionalProperties": false,
      "properties": {
        "country": {
          "type": "string",
          "pattern": "^[A-Za-z]{2}$"
        },
        "harvest_window": {
          "type": "string",
          "description": "ISO interval YYYY-MM-DD/YYYY-MM-DD, or free text."
        },
        "plot_geojson": {
          "type": "object",
          "description": "GeoJSON Polygon, MultiPolygon or Point in WGS84."
        },
        "country_subregion": {
          "type": "string"
        }
      }
    },
    "producer": {
      "type": "object",
      "required": [
        "name"
      ],
      "additionalProperties": false,
      "description": "The primary producer, where that is not the supplier.",
      "properties": {
        "name": {
          "type": "string"
        },
        "id": {
          "type": "string"
        },
        "kind": {
          "type": "string",
          "enum": [
            "cooperative",
            "smallholder",
            "plantation",
            "concession",
            "family_farm"
          ]
        }
      }
    }
  },
  "required": [
    "operator",
    "supplier",
    "product",
    "geolocation"
  ],
  "additionalProperties": false
}

Output Schema

{
  "type": "object",
  "properties": {
    "task_id": {
      "type": "string"
    },
    "state": {
      "type": [
        "string",
        "null"
      ]
    },
    "read_outcome_with": {
      "type": "string"
    },
    "report_url": {
      "type": "string"
    },
    "filed_with_any_authority": {
      "type": "boolean"
    },
    "data_stored_here": {
      "type": "string"
    },
    "data_sent_upstream": {
      "type": "string"
    },
    "next_action": {
      "type": "string"
    }
  },
  "required": [
    "task_id",
    "read_outcome_with",
    "report_url",
    "filed_with_any_authority",
    "data_stored_here",
    "data_sent_upstream",
    "next_action"
  ]
}
🟢eudr_get_dds(task_id)

Read the state of a compile started by eudr_prepare_dds. While it runs, returns the current state. Once finished, returns the verdict, the receipt's content address and signing key, and the link to the printable statement.

Input Schema

{
  "type": "object",
  "properties": {
    "task_id": {
      "type": "string",
      "maxLength": 64,
      "description": "The task_id returned by eudr_prepare_dds."
    }
  },
  "required": [
    "task_id"
  ],
  "additionalProperties": false
}

Output Schema

{
  "type": "object",
  "properties": {
    "task_id": {
      "type": "string"
    },
    "state": {
      "type": "string"
    },
    "settled": {
      "type": "boolean"
    },
    "erased": {
      "type": "boolean"
    },
    "verdict": {
      "type": [
        "string",
        "null"
      ]
    },
    "receipt_cid": {
      "type": [
        "string",
        "null"
      ]
    },
    "signer_pubkey_b32": {
      "type": "string"
    },
    "error": {
      "type": [
        "string",
        "null"
      ]
    },
    "report_url": {
      "type": "string"
    },
    "verify_at": {
      "type": "string"
    },
    "next_action": {
      "type": "string"
    },
    "note": {
      "type": "string"
    }
  },
  "required": [
    "task_id",
    "state"
  ]
}
🟢eudr_execution_trace(task_id)

The complete derivation chain behind a compiled statement, in order: polygon to grid addresses, signed measurements, the algorithm and the registries it was pinned against, cell verdicts to a consignment verdict, citations, and which of three independent keys signed what. A stage whose evidence is absent is reported as absent with its reason. Use it when someone asks how a result was reached rather than what it was.

Input Schema

{
  "type": "object",
  "properties": {
    "task_id": {
      "type": "string",
      "maxLength": 64,
      "description": "The task_id of a compile that has produced a statement."
    }
  },
  "required": [
    "task_id"
  ],
  "additionalProperties": false
}

Output Schema

{
  "type": "object",
  "properties": {
    "schema": {
      "type": "string",
      "const": "eudr.execution_trace.v1"
    },
    "task_id": {
      "type": "string"
    },
    "verdict": {
      "type": [
        "string",
        "null"
      ]
    },
    "generated_at": {
      "type": "string"
    },
    "steps": {
      "type": "array",
      "description": "A step either ran (stage, what, consumed, produced, signed_by, reproduce) or did not, in which case it carries present:false and why_absent. An absent stage is emitted, never omitted.",
      "items": {
        "type": "object"
      }
    },
    "signing_parties": {
      "type": "object"
    },
    "not_established": {
      "type": "array",
      "items": {
        "type": "object"
      }
    },
    "full_statement": {
      "type": "string"
    },
    "verify": {
      "type": "string"
    }
  },
  "required": [
    "schema",
    "task_id",
    "steps",
    "signing_parties",
    "not_established"
  ]
}
🟢eudr_import_shipments(format, document, offset, limit)

Parse a consignment list into structured shipments ready to check. Accepts a CSV export (the column set eudr.dev publishes) or a GS1 EPCIS 2.0 JSON-LD document. Returns one row per shipment with supplier, commodity, country, quantity and plot boundaries, plus a warning for every row that could not be read and the reason. Nothing is stored and nothing is submitted; this only reads the document you pass.

Input Schema

{
  "type": "object",
  "properties": {
    "format": {
      "type": "string",
      "enum": [
        "csv",
        "epcis"
      ],
      "description": "`csv` for the published column set, `epcis` for a GS1 EPCIS 2.0 JSON-LD document."
    },
    "document": {
      "type": "string",
      "maxLength": 2000000,
      "description": "The document itself. CSV text including its header row, or the EPCIS document as JSON text."
    },
    "offset": {
      "type": "integer",
      "minimum": 0,
      "description": "Which shipment to start detailing from. Totals always cover the whole document."
    },
    "limit": {
      "type": "integer",
      "minimum": 1,
      "maximum": 25,
      "description": "How many shipments to return in full, including plot boundaries. Defaults to 8, which is what eudr_check_plots accepts in one call."
    }
  },
  "required": [
    "format",
    "document"
  ],
  "additionalProperties": false
}

Output Schema

{
  "type": "object",
  "properties": {
    "format": {
      "type": "string",
      "enum": [
        "csv",
        "epcis"
      ]
    },
    "shipments_read": {
      "type": "integer"
    },
    "rows_returned": {
      "type": "integer"
    },
    "offset": {
      "type": "integer"
    },
    "next_offset": {
      "type": [
        "integer",
        "null"
      ]
    },
    "rows_skipped": {
      "type": "integer"
    },
    "warnings": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "shipments": {
      "type": "array",
      "items": {
        "type": "object"
      }
    },
    "stored": {
      "type": "boolean"
    },
    "next_action": {
      "type": "string"
    },
    "note": {
      "type": "string"
    }
  },
  "required": [
    "format",
    "shipments_read",
    "rows_returned",
    "offset",
    "rows_skipped",
    "warnings",
    "shipments",
    "stored",
    "next_action",
    "note"
  ]
}
🟢eudr_export_statement(task_id, format, activity)

Export a compiled statement as TRACES NT submission XML, signed Annex II JSON, or plot boundaries as GeoJSON. Exporting is not filing: nothing is submitted to any authority. TRACES export is refused for a non-negligible verdict, because Article 4(1) bars placing those goods and a non-filable assessment must not be handed out as a submission document.

Input Schema

{
  "type": "object",
  "properties": {
    "task_id": {
      "type": "string",
      "maxLength": 64,
      "description": "The task_id of a completed compile."
    },
    "format": {
      "type": "string",
      "enum": [
        "traces_xml",
        "annex_ii_json",
        "plots_geojson"
      ],
      "description": "`traces_xml` for the EUDR Information System submission shape, `annex_ii_json` for the signed statement, `plots_geojson` for the boundaries as a FeatureCollection."
    },
    "activity": {
      "type": "string",
      "enum": [
        "IMPORT",
        "EXPORT",
        "DOMESTIC",
        "TRADE"
      ],
      "description": "TRACES activity type. Defaults to the activity the statement was compiled with."
    }
  },
  "required": [
    "task_id",
    "format"
  ],
  "additionalProperties": false
}

Output Schema

{
  "type": "object",
  "properties": {
    "task_id": {
      "type": "string"
    },
    "format": {
      "type": "string",
      "enum": [
        "traces_xml",
        "annex_ii_json",
        "plots_geojson"
      ]
    },
    "document": {
      "description": "The exported document. A string for traces_xml, an object for the other two."
    },
    "activity": {
      "type": "string"
    },
    "dds_reference": {
      "type": [
        "string",
        "null"
      ]
    },
    "receipt_cid": {
      "type": [
        "string",
        "null"
      ]
    },
    "signer_pubkey_b32": {
      "type": "string"
    },
    "download_url": {
      "type": "string"
    },
    "verify_at": {
      "type": "string"
    },
    "filed_with_any_authority": {
      "type": "boolean"
    },
    "next_action": {
      "type": "string"
    }
  },
  "required": [
    "task_id",
    "format",
    "document"
  ]
}
🟢eudr_list_statements(limit, country, verdict)

List the Due Diligence Statements already in the signed-in organisation's account, newest first, with verdict, reference, commodity, country, quantity and date. Use this to answer what has been filed, what is outstanding, and what a past consignment concluded, rather than asking the user to re-enter details their account already holds.

Input Schema

{
  "type": "object",
  "properties": {
    "limit": {
      "type": "integer",
      "minimum": 1,
      "maximum": 100,
      "description": "How many to return. Defaults to 20."
    },
    "country": {
      "type": "string",
      "pattern": "^[A-Za-z]{2}$",
      "description": "Only statements for this country of production."
    },
    "verdict": {
      "type": "string",
      "enum": [
        "negligible",
        "non_negligible",
        "not_in_scope",
        "indeterminate"
      ]
    }
  },
  "additionalProperties": false
}

Output Schema

{
  "type": "object",
  "properties": {
    "organisation": {
      "type": "string"
    },
    "returned": {
      "type": "integer"
    },
    "statements": {
      "type": "array",
      "items": {
        "type": "object"
      }
    },
    "note": {
      "type": "string"
    }
  },
  "required": [
    "organisation",
    "returned",
    "statements",
    "note"
  ]
}
🟢eudr_compliance_status

Summarise the signed-in organisation's position: how many statements are filable, how many are blocked by a non-negligible verdict, how many are unresolved, broken down by commodity and country, plus outstanding supplier evidence requests. Answers "where do we stand" without enumerating every record.

Input Schema

{
  "type": "object",
  "properties": {},
  "additionalProperties": false
}

Output Schema

{
  "type": "object",
  "properties": {
    "organisation": {
      "type": "string"
    },
    "totals": {
      "type": "object"
    },
    "by_commodity": {
      "type": "array",
      "items": {
        "type": "object"
      }
    },
    "by_country": {
      "type": "array",
      "items": {
        "type": "object"
      }
    },
    "supplier_requests": {
      "type": "object"
    },
    "scope_note": {
      "type": "string"
    },
    "next_action": {
      "type": "string"
    }
  },
  "required": [
    "organisation",
    "totals",
    "by_commodity",
    "by_country",
    "supplier_requests",
    "scope_note",
    "next_action"
  ]
}
🟢eudr_list_supplier_requests

List the supplier evidence requests this organisation has issued: who was asked, whether they responded, and when each request expires. Answers which suppliers still owe plot boundaries and production details.

Input Schema

{
  "type": "object",
  "properties": {},
  "additionalProperties": false
}

Output Schema

{
  "type": "object",
  "properties": {
    "organisation": {
      "type": "string"
    },
    "pending": {
      "type": "integer"
    },
    "submitted": {
      "type": "integer"
    },
    "requests": {
      "type": "array",
      "items": {
        "type": "object"
      }
    },
    "note": {
      "type": "string"
    }
  },
  "required": [
    "organisation",
    "pending",
    "submitted",
    "requests",
    "note"
  ]
}
🟡eudr_request_supplier_evidence(supplier_name, email, valid_for_days)

Create a one-time link a supplier can use to submit their plot boundaries and production details straight into this organisation's account, without needing an account of their own. This writes: it creates a credential that lets whoever holds the link submit data to you, and returns that link once. Send it only to the intended supplier. No email is sent by this call.

Input Schema

{
  "type": "object",
  "properties": {
    "supplier_name": {
      "type": "string",
      "maxLength": 200,
      "description": "Your name for the counterparty, shown to them on the intake page."
    },
    "email": {
      "type": "string",
      "maxLength": 254,
      "description": "Optional, recorded so you can see where the link was meant to go. It is not verified and nothing is sent to it."
    },
    "valid_for_days": {
      "type": "integer",
      "minimum": 1,
      "maximum": 90,
      "description": "How long the link works. Defaults to 30."
    }
  },
  "required": [
    "supplier_name"
  ],
  "additionalProperties": false
}

Output Schema

{
  "type": "object",
  "properties": {
    "request_id": {
      "type": "string"
    },
    "supplier": {
      "type": "string"
    },
    "intake_url": {
      "type": "string"
    },
    "expires_at": {
      "type": "string"
    },
    "shown_once": {
      "type": "boolean"
    },
    "emailed": {
      "type": "boolean"
    },
    "next_action": {
      "type": "string"
    },
    "note": {
      "type": "string"
    }
  },
  "required": [
    "request_id",
    "supplier",
    "intake_url",
    "expires_at",
    "shown_once",
    "emailed",
    "next_action"
  ]
}
eudr_account_usage

Report this organisation's credit balance, how many signed statements it will cover, and what has been spent. Checking plots, looking up references, assessing supplier gaps and reading traces cost nothing and are always available — only compiling a signed statement draws the balance down. Use this before starting a batch of compiles so the user is not surprised part-way through. The first call for an organisation writes: it opens the wallet, grants the welcome credits and records that grant as the opening ledger line. Every call after that only reads.

Input Schema

{
  "type": "object",
  "properties": {},
  "additionalProperties": false
}

Output Schema

{
  "type": "object",
  "properties": {
    "organisation": {
      "type": "string"
    },
    "balance_credits": {
      "type": "integer"
    },
    "credits_per_analysis": {
      "type": "integer"
    },
    "analyses_remaining": {
      "type": "integer"
    },
    "credits_spent": {
      "type": "integer"
    },
    "credits_received": {
      "type": "integer"
    },
    "welcome_credits_granted_at": {
      "type": [
        "string",
        "null"
      ]
    },
    "recent_activity": {
      "type": "array",
      "items": {
        "type": "object"
      }
    },
    "charged_unit": {
      "type": "string"
    },
    "free_of_charge": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "note": {
      "type": "string"
    }
  },
  "required": [
    "organisation",
    "balance_credits",
    "credits_per_analysis",
    "analyses_remaining",
    "charged_unit",
    "free_of_charge"
  ]
}
🟢eudr_mitigation_status(shipment_id)

Report the Article 11 risk-mitigation plans this organisation has open against flagged shipments: which steps are outstanding, which article each discharges, whether a step needs a person or can be re-run automatically, and what evidence has been recorded. A non-negligible verdict creates an obligation under Article 11 to act before the product is placed on the market; this answers how far that has got. Pass a shipment id for one plan, or omit it for everything still open. Read-only — recording a decision is a deliberate human act and is done on eudr.dev, because Article 11(3) requires the reasoning to be retained against a named person.

Input Schema

{
  "type": "object",
  "properties": {
    "shipment_id": {
      "type": "string",
      "description": "Optional. One shipment's plan; omit for every open plan."
    }
  },
  "additionalProperties": false
}

Output Schema

{
  "type": "object",
  "properties": {
    "organisation": {
      "type": "string"
    },
    "open_plans": {
      "type": "integer"
    },
    "outstanding_steps": {
      "type": "integer"
    },
    "plans": {
      "type": "array",
      "items": {
        "type": "object"
      }
    },
    "note": {
      "type": "string"
    }
  },
  "required": [
    "organisation",
    "open_plans",
    "plans",
    "note"
  ]
}

Recent observations

verifiedversion not recorded16 tools