Metadata-Version: 2.5
Name: vergate-mcp
Version: 0.2.0
Summary: MCP (Model Context Protocol) server for Vergate — run security scans, tech profiling, performance, SEO/AEO and accessibility checks from Claude Code, OpenClaw and other MCP clients.
Project-URL: Homepage, https://vergate.dev
Project-URL: Source, https://github.com/codeCrack-01/PostCodee
Author: Vergate
License: MIT
Keywords: mcp,model-context-protocol,scanner,security,vergate
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Security
Requires-Python: >=3.10
Requires-Dist: httpx>=0.27.0
Requires-Dist: starlette>=0.37.0
Requires-Dist: uvicorn>=0.30.0
Description-Content-Type: text/markdown

# vergate-mcp

MCP (Model Context Protocol) server for **Vergate** — run security scans,
technology profiling, performance (Lighthouse), SEO/AEO, accessibility and
more from Claude Code, OpenClaw and other MCP clients.

Works over two transports:

- **stdio** (default) — for Claude Code, OpenClaw and local MCP clients
- **HTTP/SSE** — for web tools

## Install

```bash
pip install vergate-mcp
```

> There is **no npm package** — a global npm install triggers macOS's
> "Access other apps and services on this device" prompt on end-user machines,
> which we deliberately avoid.

## Run

```bash
# stdio (default — wire it up in your MCP client)
vergate-mcp

# HTTP transport (for web tools)
vergate-mcp --transport http --host 0.0.0.0 --port 8080
```

## Configure

Point it at your Vergate account:

```bash
export VERGATE_BACKEND_URL=https://api.vergate.dev
export VERGATE_API_KEY=pk_...
# optional: pin to one project
export VERGATE_PROJECT_ID=<project-uuid>
```

## Tools

`scan_website`, `get_scan_results`, `list_scans`, `profile_site`,
`performance_check`, `seo_check`, `accessibility_check`,
`deliverability_check`, `list_integrations`, `scan_integrations`,
`list_code_scans`, `create_project`, `list_projects`, `get_project_scans`,
`run_project_scan`, `issue_badge`, `verify_badge` — 17 tools.

## Docs

Full setup guides: https://vergate.dev/docs/mcp
