parental-control
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| SMTP_HOST | No | SMTP server host | |
| SMTP_PASS | No | SMTP password | |
| SMTP_PORT | No | SMTP server port | 587 |
| SMTP_USER | No | SMTP username | |
| LOCAL_MODEL | No | Ollama model name for local LLM classification | llama3.2 |
| ANTHROPIC_API_KEY | No | API key for LLM second-pass classification (cloud) | |
| SMTP_PARENT_EMAIL | No | Parent's email address | |
| TWILIO_AUTH_TOKEN | No | Twilio auth token | |
| TELEGRAM_BOT_TOKEN | No | Telegram bot token from BotFather | |
| TWILIO_ACCOUNT_SID | No | Twilio account SID | |
| TWILIO_WHATSAPP_TO | No | Parent's WhatsApp number | |
| PARENTAL_CONTROL_DB | No | Database file path | ~/.parental-control/db.sqlite |
| NOTIFICATION_CHANNEL | No | One of: telegram, imessage, whatsapp, email | telegram |
| TWILIO_WHATSAPP_FROM | No | Twilio sandbox number | whatsapp:+14155238886 |
| IMESSAGE_PARENT_PHONE | No | Phone number for iMessage alerts | |
| SPIRAL_WINDOW_MESSAGES | No | Message history window for spiral detection | 20 |
| TELEGRAM_PARENT_CHAT_ID | No | Parent's Telegram chat ID | |
| APPROVAL_TIMEOUT_MINUTES | No | Auto-deny timeout for held messages | 30 |
| PARENTAL_CONTROL_CHILD_AGE | No | Child's age (sets default restrictions) | 14 |
| PARENTAL_CONTROL_CHILD_NAME | No | Child's display name in alerts | Child |
| PARENTAL_CONTROL_PROFILE_ID | No | Profile identifier | default |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| check_messageA | Classify a message for safety before it reaches or comes from the child. Returns classification result with decision (allow/notify/block/hold_for_approval). |
| log_interactionA | Log an interaction to the conversation history for pattern analysis. |
| resolve_approvalB | Approve or deny a held message. Called by parent (or via bot command). |
| list_pendingA | List all messages currently held for parent approval. |
| update_profileA | Update child profile settings (age, restrictions, notification channel). |
| get_risk_summaryC | Get a conversation risk summary and spiral detection score for a child profile. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 6 tools
Each tool addresses a distinct concern: message safety classification, interaction logging, approval resolution, pending list retrieval, profile updates, and risk summaries. There is no functional overlap or ambiguity between tools.
All tool names follow a consistent verb_noun pattern in snake_case (e.g., check_message, log_interaction, resolve_approval). Naming is uniform and predictable.
Six tools cover the core parental control workflows (monitoring, approvals, risk, profile configuration) without bloat or missing essential functions.
The set covers the main lifecycle: message checking, interaction logging, approval actions, pending queue, profile updates, and risk reports. A minor gap is the lack of a direct tool to fetch a full message or interaction history beyond the risk summary, but this is a workable limitation.