CuratedMCP
✨
OpenAI Agents SDK
Free

How to Install Tuteliq in OpenAI Agents SDK

Detect grooming, bullying, fraud, and 16+ online threats across text, voice, image, and video.

What Tuteliq does

Tuteliq is a child-safety and online-harm detection layer for AI assistants and platforms. It exposes 50 tools across five surfaces: text, voice, image, video, and PDF documents. Including dedicated detectors for grooming, sextortion, self-harm ideation, coercive control, romance scams, social engineering, money-mule recruitment, gambling harm, radicalisation, and AI-generated synthetic content (deepfakes and synthetic CSAM). Every detection returns structured output: per-message risk scores, evidence-tagged categories with confidence, age-calibrated thresholds, cross-endpoint amplification, and country-aware crisis-helpline routing. Built-in GDPR tools (record/withdraw consent, export/delete account data, audit logs, breach reporting) let teams stay compliant with KOSA, EU DSA, and local data-protection law. Interactive UI widgets render results inline in Claude, Cursor, and any MCP-compatible client. Authentication is OAuth 2.1 with PKCE and dynamic client registration, no manual token handling. 27 languages, sub-second single-endpoint latency, and a free tier.

child-safety
content-moderation
trust-safety
grooming-detection
fraud-detection

Installation steps

  1. 1Install: pip install openai-agents
  2. 2Copy the snippet below into your agent code
  3. 3Replace placeholder env values with your real keys
  4. 4Pass mcp_servers=[mcp_server] to your Agent()

Python snippet

Python snippetpython
from agents import Agent
from agents.mcp import MCPServerStdio

mcp_server = MCPServerStdio(
    command="https://api.tuteliq.ai/mc",
    args=[],
)

agent = Agent(
    name="My Agent",
    model="gpt-4o",
    mcp_servers=[mcp_server],
)
Full server details GitHub Open Config Editor

Install in other clients

For maintainers

If you maintain Tuteliq, add this badge to your README to show it's verified on CuratedMCP:

CuratedMCP Verified
[![CuratedMCP Verified](https://curatedmcp.com/api/badge/tuteliq)](https://curatedmcp.com/marketplace/tuteliq)