Metadata-Version: 2.4
Name: screenshotmcp
Version: 0.1.0
Summary: Official Python SDK for ScreenshotMCP.
Author: AgentForge Labs
License-Expression: AGPL-3.0-only
Project-URL: Homepage, https://snapforge.web-tasarimci.com
Project-URL: Documentation, https://github.com/AgentForge-Labs/site-screenshot-public#readme
Project-URL: Repository, https://github.com/AgentForge-Labs/site-screenshot-public
Project-URL: Issues, https://github.com/AgentForge-Labs/site-screenshot-public/issues
Keywords: screenshot,playwright,mcp,agent,api,snapforge
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# screenshotmcp

Zero-dependency synchronous Python SDK for ScreenshotMCP.

```bash
pip install screenshotmcp
```

```python
from screenshotmcp import SiteScreenshotClient

client = SiteScreenshotClient("https://snapforge.web-tasarimci.com")
result = client.capture("https://example.com", device="both")
print(result["files"])
```

The previous `agentforge_site_screenshot` import remains available for compatibility. For authenticated endpoints pass `access_token=` or `url_secret=`. `access_token` may also be a callable that returns the current token.
