---
title: "Nuxt SEO Pro"
description: "Nuxt SEO Pro exposes your Site data through a CLI, an MCP server, and a public HTTP API."
canonical_url: "https://nuxtseo.com/docs/nuxt-seo-pro/getting-started/introduction"
last_updated: "2026-09-23T04:43:33.817Z"
---

Nuxt SEO Pro watches a production Site and records what changed. It crawls pages, reads Google Search Console, runs Lighthouse scans, tracks keywords, and opens Tickets for the problems worth fixing.

These docs cover the three surfaces that reach that data from outside the dashboard.

## Three access surfaces

| Surface                              | Use it when                                                                                                | Auth                              |
| ------------------------------------ | ---------------------------------------------------------------------------------------------------------- | --------------------------------- |
| [CLI](/docs/nuxt-seo-pro/guides/cli) | You work in a terminal, a script, or a coding agent with shell access                                      | Team API token                    |
| [MCP](/docs/nuxt-seo-pro/guides/mcp) | Your client cannot run a terminal, such as [ChatGPT](https://chatgpt.com) or [Claude.ai](http://Claude.ai) | OAuth, or a Team API token header |
| [API](/docs/nuxt-seo-pro/guides/api) | You call the service from your own code                                                                    | Team API token                    |

The CLI is the primary surface. It has exit codes, so a CI step can fail a build on a result. It pipes into other tools. It needs no client configuration file.

MCP is the compatible backup. Use it when the client has no terminal.

All three read the same server operations. None of them carries behaviour the others lack.

## Start here

```sh
npx @nuxtseo/cli login
npx @nuxtseo/cli sites list
```

`login` opens your browser, pairs the terminal, and stores a Team API token. Read the [CLI guide](/docs/nuxt-seo-pro/guides/cli) for the full command list.

## Your Site data stays yours

A Team API token reaches only the Sites its Team can access. Revoke it under Settings > API tokens. Revoking stops every surface that uses it.

## Sitemap

See the full [sitemap](/sitemap.md) for all pages.
