FixWeb

// docs / quickstart

クイックスタート

登録し、最初のスキャンを実行し、レポートを読みます。Free プランは実際に利用できます。評価にクレジットカードは不要です。

1. アカウントを作成する

/sign-in を開き、Google、GitHub、またはマジックリンクメールを選びます。新規アカウントは Free プランから始まり、月 3 回のスキャンとパッシブスキャンのみが含まれます。後から アカウント → 請求 でアップグレードできます。

2. スキャンを実行する

01

ターゲットを選ぶ

ダッシュボードで New scan をクリックし、URL を貼り付けて送信します。FixWeb は裸のホスト名(example.comhttps://example.com)を正規化し、内部アドレス(RFC 1918、リンクローカル、AWS メタデータ)を拒否します。

02

約20秒待つ

A passive scan runs in three phases: crawl (Chromium renders the page to discover links, metadata, media, scripts, and forms), quality checks (crawlability, search presentation, content/schema, media, performance, accessibility, forms, mobile/i18n, and runtime signals), and aggregate (deduplicate + severity ranking). Live progress streams via the dashboard; you don't need to refresh.

03

レポートを読む

The report opens automatically when complete. Free plan users see only the highest-severity finding in full (title, description, evidence, remediation); other findings are stripped to severity-only stubs server-side. The Hobby plan and higher (Pro, Unlimited) unlock every finding plus the AI prompt copy button on each one.

3. Run an owner-depth scan (optional, Hobby plan and higher)

Owner-depth scans extend the same website-quality checks into verified domains and can include private journeys when you provide a short-lived test-account header. Add and verify a domain at Dashboard -> Domains (DNS TXT or HTTP file), then start an Owner-depth scan from New scan. You'll attest to the scan; we audit-log it server-side.

4. REST API を使う

Account → API tokens で Bearer トークンを発行します。平文は一度だけ表示されるため、CI / Cursor / curl に貼り付けてください。

curl
# Start a passive scan
curl -X POST https://fixweb.app/api/v1/scans \
  -H "Authorization: Bearer fxw_..." \
  -H "content-type: application/json" \
  -d '{"target":"https://staging.example.com"}'

完全なリファレンスは /docs/api にあります。

5. FixWeb を AI エージェントに接続する(MCP)

FixWeb は /api/mcp で MCP server を提供します。7つのツール、2つのリソース、テンプレート化された修正プロンプト用の /fixweb-fix スラッシュコマンドがあります。Claude Desktop / Cursor / Continue に接続してください。詳しくは /docs/mcp を参照してください。

次に進む場所

  • Scan types — passive vs owner-depth vs GitHub repo scans, the attestation flow.
  • Domains — verify a domain, schedule re-scans, enable live monitoring.
  • クォータと制限 — プラン別上限、API レート制限、保持ポリシーです。

困ったときは

support@fixweb.app 宛にスキャン ID と、期待した内容と実際に見た内容をメールしてください。Hobby プランは標準サポート、Pro プランは優先サポート、Unlimited プランは専任サポートが付帯します。

クイックスタート — Docs · FixWeb