截图文字识别
STDIO截图并进行OCR文字识别的服务器
截图并进行OCR文字识别的服务器
An MCP server that captures screenshots and performs OCR text recognition.
This server uses two OCR engines:
npx -y @kazuph/mcp-screenshot
Add the following configuration to your claude_desktop_config.json
:
{ "mcpServers": { "screenshot": { "command": "npx", "args": ["-y", "@kazuph/mcp-screenshot"], "env": { "OCR_API_URL": "http://localhost:8000" // yomitoku API base URL } } } }
Variable Name | Description | Default Value |
---|---|---|
OCR_API_URL | yomitoku API base URL | http://localhost:8000 |
You can use it by instructing Claude like this:
Please take a screenshot of the left half of the screen and recognize the text in it.
Takes a screenshot and performs OCR.
Options:
region
: Screenshot area ('left'/'right'/'full', default: 'left')format
: Output format ('json'/'markdown'/'vertical'/'horizontal', default: 'markdown')MIT
kazuph