Back to MCP directory
publicPublicdnsLocal runtime

mcp

ScreenshotOne的官方MCP服务器实现,用于网页截图服务

article

README

🚀 ScreenshotOne MCP 服务器

ScreenshotOne MCP 服务器是 ScreenshotOne 官方的模型上下文协议(MCP)服务器实现。它为相关应用提供了强大的支持,您可以了解更多关于为什么构建它以及对 MCP 未来的一些想法

🚀 快速开始

✨ 主要特性

  • render-website-screenshot:该工具可渲染网站截图并以图像形式返回。

📦 安装指南

构建项目

首先,您需要安装依赖项并进行项目构建,可执行以下命令:

npm install && npm run build

获取 ScreenshotOne API 密钥

您需要在 ScreenshotOne 注册账号,并获取您的 API 密钥,以便后续使用。

💻 使用示例

在 Claude Desktop 中使用

将以下内容添加到 ~/Library/Application\ Support/Claude/claude_desktop_config.json 文件中:

{
    "mcpServers": {
        "screenshotone": {
            "command": "node",
            "args": ["path/to/screenshotone/mcp/build/index.js"],
            "env": {
                "SCREENSHOTONE_API_KEY": "<your api key>"
            }
        }
    }
}

单独使用或其他项目

若要单独使用或在其他项目中使用,可执行以下命令:

SCREENSHOTONE_API_KEY=your_api_key && node build/index.js

📄 许可证

ScreenshotOne MCP 服务器MIT License 下许可。

help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client