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

# Connect MCP

> Connect Cursor, Claude Desktop, or another MCP client to your Webstorio project and manage CMS, forms, store, and App Data.

Webstorio exposes a remote **Model Context Protocol (MCP)** server so AI agents can read project context and run permission-scoped mutations through standard tools.

MCP **enriches** both the dashboard and CLI workflows. It does **not** create projects, rewrite page code, or publish sites — use [Create your first site](/guides/create-your-site) or the [CLI tutorial](/developer/your-first-site) for that.

<Note>
  **Alpha** — the Webstorio MCP server is in active development. Share feedback at
  [hello@webstorio.com](mailto:hello@webstorio.com).
</Note>

## Requirements

* A **paid plan** (Starter or higher). Free accounts receive `403`.
* Sign in with Webstorio via **OAuth** when the MCP client connects.
* Enabled project features where applicable (Content & CMS, Form & Survey, Online Store, App Data). Mutating tools still enforce plan limits.

## Connect

**Endpoint:**

```text theme={"dark"}
https://mcp.webstorio.com
```

### Cursor / Claude Desktop (OAuth)

Point the client at the MCP URL only — it will discover OAuth metadata and open a browser sign-in:

```json theme={"dark"}
{
  "mcpServers": {
    "webstorio": {
      "url": "https://mcp.webstorio.com"
    }
  }
}
```

On first connect, the client registers itself (dynamic client registration), redirects you to Webstorio sign-in, then stores an access token automatically.

## First workflow

1. Ask the agent to **list your projects** (`list_projects`).
2. Pick a project and ask for a **summary** (`get_project`) or **pages** (`list_pages`).
3. With Content & CMS enabled, try listing types or creating an entry.

Exact tool names and parameters: [MCP tools reference](/api-reference/mcp/overview).

## How this fits your path

| You started with…                     | Use MCP for…                             | Still use…                             |
| ------------------------------------- | ---------------------------------------- | -------------------------------------- |
| [Dashboard](/guides/create-your-site) | CMS, forms, store, App Data via an agent | Dashboard AI / visual editor for pages |
| [CLI](/developer/your-first-site)     | Same project data via an agent           | Local `.tsx` + `push` for page code    |

See [CLI, MCP, and SDK](/developer/cli-mcp-sdk) and [Use AI agents on local files](/developer/ai-agents).
