Skip to main content
Glama

MCP サーバーのスクリーンショット

AI ツールにスクリーンショット機能を提供し、画面のコンテンツをキャプチャして処理できるようにする MCP サーバー。

概要

このMCPサーバーにより、AIツールはユーザーの画面のスクリーンショットを撮影できるようになり、AIアシスタントはユーザーが見ているものを把握・分析できるようになります。サーバーは画像のキャプチャ、圧縮、そしてAI処理に適した形式での配信を処理します。

Related MCP server: Screen MCP

特徴

  • 全画面スクリーンショットを撮る

  • 効率的な転送のための自動JPEG圧縮

  • 信頼性の高い伝送のためにBase64でエンコードされた画像データ

  • stdio と SSE トランスポートモードの両方をサポート

  • 設定可能な画質と最適化

  • テスト用のシンプルなコマンドラインインターフェース

インストール

ソースから

# Clone the repository
git clone https://github.com/codingthefuturewithai/screenshot_mcp_server.git
cd screenshot_mcp_server

# Install using UV (recommended)
uv pip install -e .

# Or using pip
pip install -e .

利用可能なツール

スクリーンショット

説明: ユーザーの画面のスクリーンショットを撮り、JPEG 画像として返します。

パラメータ: なし

戻り値:

  • 画像コンテンツは JPEG 形式で、base64 でエンコードされています

使用法

サーバーは次の 2 つの方法で使用できます。

コマンドラインクライアント

# Take a screenshot and save it to a file
screenshot_mcp_server-client output.jpg

プログラムによる使用

from mcp import ClientSession, StdioServerParameters
from mcp.client.stdio import stdio_client

async with stdio_client(StdioServerParameters(command="screenshot_mcp_server-server")) as (read, write):
    async with ClientSession(read, write) as session:
        result = await session.call_tool("take_screenshot")
        # Process the screenshot data...

要件

  • Python 3.10 以降 (< 3.13)

  • 依存関係:

    • mcp >= 1.0.0

    • pyautogui >= 0.9.54

    • 枕 >= 10.0.0

  • オペレーティングシステム: Linux、macOS、Windows

構成

サーバーは 2 つのトランスポート モードをサポートしています。

  • stdio (デフォルト): コマンドラインで使用する場合

  • SSE: Webベースのアプリケーションの場合、デフォルトでポート3001で実行されます

SSE モードで実行するには:

screenshot_mcp_server-server-sse --port 3001

ライセンス

このプロジェクトは MIT ライセンスに基づいてライセンスされています。

著者

ティム・キッチンズ ( timkitch@codingthefuture.ai )

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

  • F
    license
    A
    quality
    D
    maintenance
    Enables LLMs to capture screenshots and screen recordings through MCP with chunked session-based transfers for reliable image consumption. Supports multi-monitor selection, timeline capture, and compatibility with both vision and non-vision language models.
    11
    1
  • A
    license
    -
    quality
    A
    maintenance
    Open-source screenshot tool for Windows with a built-in MCP server that allows AI assistants like Claude to capture and view screen content through tools like take_screenshot, ask_user_to_select_region, and more.
    3
    MIT

View all related MCP servers

Related MCP Connectors

  • OCR, transcription, file extraction, and image generation for AI agents via MCP.

  • Screenshot, diff, audit and sitemap-capture any web page — 5 MCP tools for AI agents.

  • Your memory, everywhere AI goes. Build knowledge once, access it via MCP anywhere.

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/codingthefuturewithai/screenshot_mcp_server'

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