Skip to main content
Glama

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).

Related MCP server: computer-use-mcp

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

Install Server
A
license - permissive license
A
quality
D
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    -
    quality
    A
    maintenance
    MCP server that enables Claude to control your computer, similar to Anthropic's computer use but easy to set up locally.
    540
    341
    MIT
  • A
    license
    -
    quality
    A
    maintenance
    An MCP server that lets Claude operate your real computer by moving the actual mouse, clicking, typing, and reading the actual screen, working with your own logged-in sessions in any application.
    MIT
  • A
    license
    -
    quality
    D
    maintenance
    MCP server that gives Claude Code full mouse, keyboard, and app control on macOS. Tell Claude what to do and watch it operate your computer.
    170
    MIT

View all related MCP servers

Related MCP Connectors

  • Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer

  • Augments MCP Server - A comprehensive framework documentation provider for Claude Code

  • MCP server for Grok Imagine AI video generation

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/odfalik/uthere'

If you have feedback or need assistance with the MCP directory API, please join our Discord server