Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Camera-based presence detection MCP server for Claude Code. Uses your webcam to check if you're sitting at your computer, and can automatically keep Claude working when you step away.

README.md

u there?

Camera-based presence detection for Claude Code. Uses your webcam to check if you're sitting at your computer.

Two components:

  1. MCP server exposes an is_user_present tool that Claude can call anytime to check if you're there
  2. Stop hook automatically keeps Claude working when you step away, so it doesn't stop and wait for input from an empty chair

Uses MediaPipe BlazeFace for fast, lightweight face detection. Works well with glasses, varied lighting, and different angles. The model (~200KB) is downloaded automatically on first run.

Install

Requires Python 3.11+ and uv.

git clone https://github.com/odfalik/uthere.git
cd uthere
uv sync

Camera permissions

On macOS, your terminal app needs camera access. Go to System Settings > Privacy & Security > Camera and enable it for your terminal (Terminal, iTerm2, etc).

Setup

Add either or both of the following to your Claude Code settings file (~/.claude/settings.json).

MCP server

Gives Claude a tool it can call to check if you're at your desk.

{
  "mcpServers": {
    "uthere": {
      "command": "uv",
      "args": ["--directory", "/path/to/uthere", "run", "python", "-m", "uthere.server"]
    }
  }
}

Stop hook

Prevents Claude from stopping when you're away. If Claude finishes a response and no face is detected, it gets a message telling it to keep going. A 60-second cooldown prevents infinite loops.

{
  "hooks": {
    "Stop": [
      {
        "hooks": [
          {
            "type": "command",
            "command": "uv --directory /path/to/uthere run python -m uthere.hook",
            "timeout": 15
          }
        ]
      }
    ]
  }
}

Configuration

All configuration is through environment variables. Set them in your shell profile or in Claude Code's env settings.

| Variable | Default | Description | |---|---|---| | UTHERE_AWAY_MESSAGE | "No face detected. User appears to be away..." | MCP tool message when no face is detected | | UTHERE_PRESENT_MESSAGE | "User is at their computer." | MCP tool message when face is detected | | UTHERE_HOOK_MESSAGE | "The user is not at their computer right now..." | Message sent to the agent when the stop hook blocks |

Example using Claude Code's env settings:

{
  "env": {
    "UTHERE_AWAY_MESSAGE": "User is away. Send them a message on Discord.",
    "UTHERE_HOOK_MESSAGE": "User is AFK. Keep working, ping them on Discord if stuck."
  }
}

How it works

  1. Opens the webcam via OpenCV
  2. Takes a few warmup frames (lets auto-exposure settle)
  3. Checks 3 consecutive frames with BlazeFace face detection
  4. Returns true if a face is found in any frame

The whole check takes about 1-2 seconds. The camera is released immediately after each check.

License

MIT

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Developer Tools servers.