Skip to main content
Glama
pavanmareddy-git

AIAgentMCP

README.md
# AIAgentMCP — Playwright + MCP test scaffold

A minimal Playwright project scaffold for automated testing and Model Context Protocol (MCP) development.

## Overview

This repository includes:

- Playwright test setup using `@playwright/test`
- Example browser tests in `tests/`
- A sample Playwright MCP workflow via `npm run mcp`
- Docker install helper script at `../install-docker.ps1` for Windows environments

## Setup

```bash
cd AIAgentMCP
npm install
```

## Run tests

```bash
npm run test
```

## Start the MCP server

```bash
npm run mcp
```

## Repository contents

- `package.json` / `package-lock.json` — project dependencies and scripts
- `playwright.config.ts` — Playwright configuration
- `tests/` — sample Playwright tests
- `test-results/` — test output and artifacts
- `.gitignore` — ignored files for this repository

## Notes

- The project uses `@playwright/test` as a dev dependency.
- The `mcp` script launches Playwright MCP using `npx @playwright/mcp@latest`.
- On Windows, Docker Desktop is required for many Playwright workflows that use containers.