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

# MCP

> Connect Zenrows to Claude Code, Cursor, and other AI agents through MCP, using the Zenrows CLI.

`zenrows mcp` and `zenrows plugin` are Zenrows CLI commands that wire the Zenrows MCP server into an agent client for you. They generate the config your client needs, they don't run a server themselves.

<Note>
  This page covers the CLI commands only. For the MCP server itself, its tools, and authentication, see [MCP](/integrations/mcp/mcp-overview).
</Note>

```bash theme={null}
zenrows mcp status
zenrows mcp config --client <client>
```

## Clients

`claude-code`, `cursor`, `vscode`, `windsurf`, `gemini`, `codex`, `opencode`, `generic`.

<Note>
  Codex and OpenCode need manual configuration. The other six auto-configure.
</Note>

## Examples

```bash theme={null}
# Print the exact config snippet for a client
zenrows mcp config --client claude-code

# Target the hosted server instead of the local one
zenrows mcp config --client cursor --remote

# Remove a configured server
zenrows mcp uninstall --client vscode
```

## `zenrows plugin`: MCP config + skills in one command

`zenrows plugin install <client>` wraps `mcp config` and also installs every skill, one command instead of two.

```bash theme={null}
zenrows plugin list
zenrows plugin install claude-code
zenrows plugin status
```
