CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Capture Screen MCP

ochtum/capturescreenmcp
2STDIOregistry active
Summary

Built for Windows and distributed as a .NET 10 tool via NuGet, this server gives Claude direct screen capture capabilities through stdio transport. You get seven tools: list connected displays, capture the full desktop or specific monitors, grab rectangular regions by coordinates, screenshot the active window, and delete captured images in bulk or by date range. It automatically hides Windows Terminal during captures to avoid self-reference artifacts. All images save as PNG files to a configurable directory (defaults to C:\capture_screen). Useful when you need Claude to see your actual screen state, analyze UI layouts, or debug visual issues without manual screenshot workflows. Windows-only implementation that runs with your user permissions.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

English 日本語

CaptureScreenMCP

Windows 向けのローカル実行型 MCP サーバーです(stdio transport)。 C# / .NET 10 の .NET tool として NuGet.org に公開しており、画面キャプチャとキャプチャ画像削除ツールを提供します。

  • NuGet: CaptureScreenMcp
  • MCP Registry name: io.github.ochtum/capture-screen
  • NuGet package ID: CaptureScreenMcp
  • Tool command: capture-screen-mcp

何ができるか

  • 接続ディスプレイ情報の取得
  • デスクトップ全体、指定ディスプレイ、指定領域、アクティブウィンドウの PNG キャプチャ
  • 出力先ディレクトリ内のキャプチャ画像一括削除
  • 日付/日時範囲でのキャプチャ画像削除
  • capture_screen / capture_display / capture_region 実行時に、撮影領域に重なった Windows Terminal を一時的に非表示化(既定で有効)

利用可能な Tools

  • list_displays()
  • capture_screen(outputPath?: string)
  • capture_display(display?: int | string, outputPath?: string)
  • capture_region(x: int, y: int, width: int, height: int, outputPath?: string)
  • capture_active_window(outputPath?: string)
  • delete_all_capture_images()
  • delete_capture_images_by_datetime(targetDate?: string, startDatetime?: string, endDatetime?: string)

必要環境

  • Windows
  • .NET 10 SDK
    • NuGet から MCP サーバーとして起動する場合は dnx を使用します。
    • 開発中にソースから起動する場合は dotnet run を使用します。

環境変数

  • CAPTURE_SCREEN_DEFAULT_DISPLAY
    • capture_display で display 省略時の既定値
    • 例: primary, left, right, プライマリ, 左, 右, 2
  • CAPTURE_SCREEN_OUTPUT_DIR
    • 保存先ディレクトリ(既定: C:\capture_screen)
  • CAPTURE_SCREEN_HIDE_FOREGROUND_WINDOWS_TERMINAL
    • 1/true/on で有効、0/false/off で無効
    • 既定は有効

NuGet から利用する

NuGet.org の公開済みパッケージを MCP クライアントから起動する場合は、dnx で CaptureScreenMcp を実行します。

{
  "servers": {
    "capture-screen": {
      "type": "stdio",
      "command": "dnx",
      "args": ["CaptureScreenMcp@1.0.5", "--yes"],
      "env": {
        "CAPTURE_SCREEN_OUTPUT_DIR": "C:\\capture_screen",
        "CAPTURE_SCREEN_DEFAULT_DISPLAY": "primary",
        "CAPTURE_SCREEN_HIDE_FOREGROUND_WINDOWS_TERMINAL": "1"
      }
    }
  }
}

通常の .NET tool としてインストールして起動することもできます。

dotnet tool install --global CaptureScreenMcp --version 1.0.5
capture-screen-mcp

ソースから開発実行する

ビルド

dotnet restore
dotnet build

MCP サーバー起動(stdio)

dotnet run --project src

開発中にソースツリーを直接参照する場合の接続設定例です。

{
  "servers": {
    "capture-screen": {
      "type": "stdio",
      "command": "dotnet",
      "args": ["run", "--project", "src"],
      "env": {
        "CAPTURE_SCREEN_OUTPUT_DIR": "C:\\capture_screen",
        "CAPTURE_SCREEN_DEFAULT_DISPLAY": "primary",
        "CAPTURE_SCREEN_HIDE_FOREGROUND_WINDOWS_TERMINAL": "1"
      }
    }
  }
}

公開手順

NuGet.org へ公開する

  1. src/CaptureScreenMcp.csproj の <Version> を更新します。
  2. .mcp/server.json のトップレベル version と packages[0].version を同じバージョンに更新します。
  3. dotnet pack src/CaptureScreenMcp.csproj -c Release
  4. dotnet nuget push src/bin/Release/*.nupkg --api-key <NUGET_API_KEY> --source https://api.nuget.org/v3/index.json

このパッケージは NuGet MCP サーバーとして認識されるため、以下を含めています。

  • .mcp/server.json
  • README.md の <!-- mcp-name: io.github.ochtum/capture-screen --> コメント
  • PackageIcon に指定した icon.png
  • McpServer package type
  • .NET tool 設定(PackAsTool / ToolCommandName)

MCP Registry へ公開する

NuGet.org への公開だけでは、registry.modelcontextprotocol.io には自動掲載されません。 NuGet.org のパッケージ検証が完了してから、MCP Publisher で .mcp/server.json を公開します。

mcp-publisher login github
mcp-publisher publish .mcp/server.json

server.json の name と、NuGet パッケージに含まれる README.md の mcp-name は一致している必要があります。 また、packages[0].version は mcp-name が一致する NuGet パッケージのバージョンを指している必要があります。

権限と注意点

  • 本サーバーはローカル実行型です。MCP クライアントと同じユーザー権限で動作します。
  • 画面キャプチャ結果はローカルファイルとして保存されます。機密情報が映り込む可能性に注意してください。
  • 画像削除ツールは CAPTURE_SCREEN_OUTPUT_DIR 直下の画像ファイルを削除します。
  • Windows 専用実装です。Windows 以外で実行するとエラーになります。

マニフェスト

  • 開発実行用: server.json
  • NuGet MCP 公開用: .mcp/server.json
Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Configuration

CAPTURE_SCREEN_DEFAULT_DISPLAY

Default display selector when capture_display display argument is omitted.

CAPTURE_SCREEN_OUTPUT_DIR

Default output directory for PNG captures. Default is C:\capture_screen.

CAPTURE_SCREEN_HIDE_FOREGROUND_WINDOWS_TERMINAL

Set 0/false/off to disable temporary hiding of overlapping Windows Terminal windows during capture.

Registryactive
PackageCaptureScreenMcp
TransportSTDIO
UpdatedApr 17, 2026
View on GitHub