# EU AI Act Risk-Tier Classifier

> Free tool #18

Classify an AI system into its EU AI Act risk tier — with the governing Article and Annex cited for every outcome.

## Three ways to use it

**Web** — the interactive page: https://telemeter.ai/tools/eu-ai-act-classifier

**MCP** — a `tools/call` on the public MCP server at https://telemeter.ai/mcp (tool name: `eu-ai-act-classifier`), read-only, no key required.

**REST** — `POST https://telemeter.ai/api/tools/eu-ai-act-classifier` with a JSON body matching the input schema below:

```json
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "prohibited": {
      "default": [],
      "type": "array",
      "items": {
        "type": "string",
        "enum": [
          "social-scoring",
          "manipulation",
          "exploit-vulnerabilities",
          "biometric-categorization",
          "realtime-biometric",
          "emotion-work-education",
          "facial-scraping",
          "predictive-policing"
        ]
      }
    },
    "safetyComponent": {
      "default": false,
      "type": "boolean"
    },
    "annexIIIArea": {
      "default": "none",
      "type": "string",
      "enum": [
        "none",
        "biometrics",
        "critical-infrastructure",
        "education",
        "employment",
        "essential-services",
        "law-enforcement",
        "migration",
        "justice-democracy"
      ]
    },
    "narrowProceduralException": {
      "default": false,
      "type": "boolean"
    },
    "profilesNaturalPersons": {
      "default": false,
      "type": "boolean"
    },
    "transparency": {
      "default": [],
      "type": "array",
      "items": {
        "type": "string",
        "enum": [
          "chatbot",
          "synthetic-content",
          "emotion-biometric"
        ]
      }
    },
    "gpaiProvider": {
      "default": false,
      "type": "boolean"
    },
    "gpaiSystemicCompute": {
      "default": false,
      "type": "boolean"
    }
  },
  "required": [
    "prohibited",
    "safetyComponent",
    "annexIIIArea",
    "narrowProceduralException",
    "profilesNaturalPersons",
    "transparency",
    "gpaiProvider",
    "gpaiSystemicCompute"
  ],
  "additionalProperties": false
}
```

[Open the interactive page](https://telemeter.ai/tools/eu-ai-act-classifier) · [Every tool and doc, machine-readable](https://telemeter.ai/llms.txt)
