Quickstart

Run your first Marketing Signal scan in a few minutes. The free plan includes two scans each month for any pages on your registered domain; paid plans add more Page Checks.

1. Add your site

Create an account, then add a project by entering your domain. You confirm you are authorized to audit the public site; index365 only reads publicly visible pages and never logs into private systems.

One project covers the whole domain: its apex and every subdomain (staging.yoursite.com, preview.yoursite.com, and similar), so you register once per site rather than once per subdomain.

2. Run a free page scan

From the project, run the Marketing Signal scan. The free plan includes two page scans each month. The scan reads your page the way an answer engine does: crawlability, metadata, schema, content structure, and how quotable your value proposition is. It finishes in about a minute.

What the score means

Marketing Signal scores six categories out of 100: SEO, Content, AEO, Analytics and Tracking, Conversion, and Trust and Proof. The headline is the roll-up of those cards, weighted by how many checks each one graded, and the report states its own coverage so you know what the number was built from. A check we could not grade is left out rather than shown as an empty row.

3. Review and act on findings

Open the report to see findings grouped by the category that scores them, and by severity. Each finding includes the affected URL, the evidence, and a recommended fix. You can copy a ready-to-paste fix prompt straight into your coding agent.

Run it from the CLI instead

Prefer the terminal? Run npx -y @index365/cli login and pick how you want to sign in (Browser or API key), then run the same scan. No install is required. The scan command resolves your project from the URL's domain and waits until the result is ready, so the score arrives in your terminal when the scan is over. See Authentication for the browser flow and the CI/headless key option.

bash
npx -y @index365/cli login                                   # pick Browser (recommended) or API key
npx -y @index365/cli projects create --domain yoursite.com --name "Yoursite"
npx -y @index365/cli scan https://yoursite.com               # waits, then prints the score and runId
RUN_ID="<runId printed above>"
npx -y @index365/cli findings list --run "$RUN_ID" --severity critical --json
npx -y @index365/cli report "$RUN_ID"                        # compact, agent-ready JSON context
Drive it from your agent

Install the agent skills with npx skills add index365usa/agent-skills and your coding agent can run a scan, apply the fixes in your repo, and re-scan to confirm the score moved, all in one flow.

Next steps

  • Marketing Signal explains the six categories, the score bands, and how the headline is built
  • Developers covers connecting your agent, the MCP server, CLI, agent skills, and REST API