> ## Documentation Index
> Fetch the complete documentation index at: https://docs.clickflow.com/llms.txt
> Use this file to discover all available pages before exploring further.

# ClickFlow Developer Docs

> Integrate ClickFlow's AI-powered SEO platform into your workflows via MCP or REST API.

ClickFlow is an AI-powered SEO platform that creates, optimizes, and tracks content — driven by real Google Search Console and Analytics data, not guesswork.

These docs cover the **MCP server** and **REST API** — two ways to access the same capabilities programmatically.

## How it works

```
Keyword → Roadmap Item → AI Workflow (5-15 min) → Draft → Publish to CMS
```

1. You **research keywords** and decide what to write about
2. You create a **roadmap item** — a planned piece of content tied to a keyword
3. You start a **workflow** — an AI pipeline that researches competitors, outlines, and writes
4. The workflow produces a **draft** (HTML + title + meta description)
5. You review, edit, then **publish** to your CMS (WordPress, Sanity, HubSpot, Shopify, Strapi)

Every step can be done programmatically via MCP or API.

<Note>
  **You need a ClickFlow account first.** Sign up at [app.clickflow.com](https://app.clickflow.com), set up your brand voice, and connect Google Search Console. MCP clients authenticate via OAuth (no API key needed). For the REST API, generate an API key in Settings.
</Note>

## What you can do

<CardGroup cols={2}>
  <Card title="Content Pipeline" icon="pen-nib" href="/capabilities/content-pipeline">
    Create roadmap items, generate drafts with AI, save and publish to your CMS.
  </Card>

  <Card title="SEO Research" icon="magnifying-glass-chart" href="/capabilities/seo-research">
    Analyze keywords, track competitors, and retrieve your brand voice profile.
  </Card>

  <Card title="AI Agents" icon="robot" href="/capabilities/ai-agents">
    Optimize titles, meta descriptions, generate FAQs, images, and run competitive analysis.
  </Card>

  <Card title="Analytics" icon="chart-line" href="/capabilities/analytics">
    Pull SEO performance data from Google Search Console and GA4, track AI visibility.
  </Card>
</CardGroup>

## Get started

<CardGroup cols={2}>
  <Card title="Quickstart" icon="rocket" href="/quickstart">
    Connect ClickFlow to your MCP client or make your first API call in 5 minutes.
  </Card>

  <Card title="Authentication" icon="key" href="/authentication">
    API keys, OAuth, and headers.
  </Card>
</CardGroup>

## Two ways to connect

Both interfaces expose the same 34 capabilities and return identical responses.

|              | MCP                                      | REST API                             |
| ------------ | ---------------------------------------- | ------------------------------------ |
| **Endpoint** | `https://api.clickflow.com/v1/mcp`       | `https://api.clickflow.com/v1/api/*` |
| **Best for** | AI assistants (Claude, Cursor, Windsurf) | Scripts, CI/CD, custom integrations  |
| **Auth**     | OAuth via Clerk (no API key needed)      | API key (`cf_ak_*`)                  |
| **Protocol** | MCP over HTTP                            | Standard REST (JSON)                 |
