Skip to main content

Free MCP server for screen capture and recording with promotional ads

Project description

Third Eye Logo

PyPI Python Versions Downloads License

Third Eye MCP (Python)

A free, unlimited screen capture and recording MCP server for Python. Capture screenshots and record screen activity with no daily limits - includes promotional messages in metadata.

Features

  • Unlimited Captures: No daily limits or restrictions
  • Multi-Display Support: Capture any connected monitor
  • Region Capture: Capture specific screen areas
  • Screen Recording: Change-based keyframe capture with grid output
  • Scheduled Recording: Burst capture at specific times (up to 10 min)
  • Auto-Resize: Configurable maximum width for optimized images
  • Capture Delay: Optional delay before capture
  • Latest Capture: Retrieve the most recent screenshot

Installation

pip install third-eye-mcp

Or install from source:

git clone https://github.com/Osseni94/third-eye-mcp.git
cd third-eye-mcp
pip install -e .

Usage

With Claude Desktop

Add to your Claude Desktop config (claude_desktop_config.json):

{
  "mcpServers": {
    "third-eye": {
      "command": "python",
      "args": ["-m", "third_eye_mcp"]
    }
  }
}

With MCP Inspector

npx @modelcontextprotocol/inspector python -m third_eye_mcp

Available Tools

screen.list_displays

List all available displays/monitors.

Input: None

Output:

{
  "displays": [
    {
      "index": 0,
      "name": "Display 1",
      "x": 0,
      "y": 0,
      "width": 1920,
      "height": 1080,
      "isPrimary": true
    }
  ]
}

screen.capture

Capture a full display screenshot.

Input:

Parameter Type Default Description
displayIndex integer 0 Display to capture (0-based)
maxWidth integer 1920 Max width for resizing
delay number 0 Delay in seconds
instant boolean false Skip delay

Output: Base64 PNG image + metadata JSON with sponsored field

screen.capture_region

Capture a specific region of the screen.

Input:

Parameter Type Required Description
x integer Yes X coordinate
y integer Yes Y coordinate
width integer Yes Region width
height integer Yes Region height
maxWidth integer No Max width for resizing (default: 1920)
delay number No Delay in seconds (default: 0)
instant boolean No Skip delay (default: false)

Output: Base64 PNG image + metadata JSON with sponsored field

screen.latest

Get the most recently captured screenshot.

Input: None

Output: Last captured image + metadata JSON with sponsored field


Screen Recording Tools

screen.record

Record screen with change-based keyframe capture. Captures frames at intervals, discards near-duplicates, and returns a compact grid image (contact sheet) with timestamps.

Input:

Parameter Type Default Description
duration integer 30 Recording duration in seconds (1-120)
interval number 1.0 Capture interval in seconds (0.25-10)
displayIndex integer 0 Display to record (0-based)
maxWidth integer 1280 Max width for full frames (320-1920)
changeThreshold number 2.0 Min change % to keep frame (0-100)
maxFrames integer 30 Maximum frames to keep (5-100)
thumbnailWidth integer 320 Thumbnail width for grid (160-640)

Output: Grid image (contact sheet) + metadata JSON + frame summaries

Example Response:

{
  "metadata": {
    "recordingId": "abc12345",
    "duration": 30.5,
    "framesCaptured": 31,
    "framesKept": 12,
    "framesDiscarded": 19,
    "sponsored": "..."
  },
  "frames": [
    {"index": 0, "timestamp": 0.0, "changeScore": 100.0},
    {"index": 1, "timestamp": 2.0, "changeScore": 15.3}
  ]
}

screen.scheduled_record

Record screen with scheduled snapshot bursts at specific times. Useful for longer recordings where you want to capture specific moments like beginning, middle, and end of a process.

Input:

Parameter Type Default Description
totalDuration integer 60 Total duration to monitor (10-600 sec)
snapshots array required List of snapshot burst configs
displayIndex integer 0 Display to record (0-based)
maxWidth integer 1280 Max width for full frames
thumbnailWidth integer 320 Thumbnail width for grid

Snapshot Burst Config:

Property Type Default Description
at number required When to start burst (seconds from start)
count integer 3 Number of snapshots in burst (1-20)
interval number 1.0 Time between snapshots (0.25-10)

Example - 4 minute recording with bursts:

{
  "totalDuration": 240,
  "snapshots": [
    {"at": 0, "count": 3, "interval": 1.0},
    {"at": 120, "count": 5, "interval": 0.5},
    {"at": 230, "count": 3, "interval": 1.0}
  ]
}

screen.get_frame

Retrieve a full-resolution frame from a recording. Use the recordingId from screen.record or screen.scheduled_record response.

Input:

Parameter Type Required Description
recordingId string Yes Recording ID to retrieve frame from
frameIndex integer No Frame index to retrieve (0-based)
timestamp number No Timestamp to find closest frame

Output: Full resolution image + frame metadata

Note: Recordings are stored in memory for 5 minutes (max 5 recordings). Use screen.get_frame to retrieve full-resolution images when you need to read text or see details.


Response Format

All capture tools return metadata including a sponsored message:

{
  "width": 1920,
  "height": 1080,
  "displayIndex": 0,
  "timestamp": "2025-01-22T12:00:00Z",
  "sponsored": "Love Third Eye? Get the ad-free TypeScript version: grandnasser.com/third-eye"
}

Ad-Free Version

Want to remove ads? Get the TypeScript version with premium features at grandnasser.com/third-eye.

License

MIT License - see LICENSE file for details.

Author

Kaossara Osseni - grandnasser.com

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

third_eye_mcp-1.1.1.tar.gz (1.6 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

third_eye_mcp-1.1.1-py3-none-any.whl (26.3 kB view details)

Uploaded Python 3

File details

Details for the file third_eye_mcp-1.1.1.tar.gz.

File metadata

  • Download URL: third_eye_mcp-1.1.1.tar.gz
  • Upload date:
  • Size: 1.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.9

File hashes

Hashes for third_eye_mcp-1.1.1.tar.gz
Algorithm Hash digest
SHA256 8d858f82d4533b19371e5581f449b593721fe4d993239b9cdca99d977ebfa2d5
MD5 b9fd54345db9beef25b22204d8858172
BLAKE2b-256 2785d17d441639d62a666bdde04523319b8a13e6729ffc6ddae28eb713c3c5e3

See more details on using hashes here.

File details

Details for the file third_eye_mcp-1.1.1-py3-none-any.whl.

File metadata

  • Download URL: third_eye_mcp-1.1.1-py3-none-any.whl
  • Upload date:
  • Size: 26.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.9

File hashes

Hashes for third_eye_mcp-1.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 ed3e91d0e163aa3b4a1e6335d0413a5498e3e9905f55b82b5c9e9a248bbe36be
MD5 1d5eb849c1b558c3cf360eecd2e1adb6
BLAKE2b-256 591582dc406ec4f3b2a3b566dcc2237ef8eeef875222a332e021292608c29628

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page