一个能够捕获截图并进行OCR文字识别的MCP服务器。
<a href="https://glama.ai/mcp/servers/vcnmmaejv8"><img width="380" height="200" src="https://gips0.baidu.com/it/u=384635110,1527691518&fm=3081&app=3081&f=PNG?w=760&h=400" alt="mcp-screenshot MCP server" /></a>
此服务器使用两个OCR引擎:
npx -y @kazuph/mcp-screenshot
在你的claude_desktop_config.json中添加以下配置:
{
"mcpServers": {
"screenshot": {
"command": "npx",
"args": ["-y", "@kazuph/mcp-screenshot"],
"env": {
"OCR_API_URL": "http://localhost:8000" // yomitoku API 基础URL
}
}
}
}
| 变量名称 | 描述 | 默认值 |
|---|---|---|
| OCR_API_URL | yomitoku API 基础URL | http://localhost:8000 |
你可以通过指示Claude来使用它:
请截取屏幕左半部分的截图,并识别其中的文字。
捕获截图并进行OCR。
选项:
region: 截图区域('left'/'right'/'full',默认:'left')format: 输出格式('json'/'markdown'/'vertical'/'horizontal',默认:'markdown')MIT
kazuph