loading…
Search for a command to run...
loading…
An MCP server that enables AI assistants to interact with Wag pet care services using Playwright browser automation. It allows users to search for walkers, book
An MCP server that enables AI assistants to interact with Wag pet care services using Playwright browser automation. It allows users to search for walkers, book one-time or recurring sessions, track walks via GPS, and retrieve pet report cards.
An MCP (Model Context Protocol) connector for Wag dog walking and pet care services. Enables AI assistants like Claude to search for walkers, book walks, check walk status with GPS tracking, view walker profiles, leave reviews, and retrieve pet report cards — all via Playwright browser automation against the live Wag website.
This MCP server wraps the Wag web app using Playwright so any MCP-compatible AI client can:
npm install -g @striderlabs/mcp-wag
# Install Playwright browser binaries (one-time setup)
npx playwright install chromium
Or use it directly from the tarball:
npm install -g ./striderlabs-mcp-wag-1.0.0.tgz
npx playwright install chromium
Set these environment variables before running the server:
| Variable | Required | Description |
|---|---|---|
WAG_EMAIL |
For auth tools | Your Wag account email address |
WAG_PASSWORD |
For auth tools | Your Wag account password |
WAG_HEADLESS |
No | Set to false to show the browser window (for debugging) |
search_walkers and view_walker_profile do not require credentials. All booking, status, rating, and report tools require WAG_EMAIL and WAG_PASSWORD.
Add the following to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"wag": {
"command": "mcp-wag",
"env": {
"WAG_EMAIL": "[email protected]",
"WAG_PASSWORD": "yourpassword",
"WAG_HEADLESS": "true"
}
}
}
}
If you installed from a local path instead of globally:
{
"mcpServers": {
"wag": {
"command": "node",
"args": ["/path/to/dist/index.js"],
"env": {
"WAG_EMAIL": "[email protected]",
"WAG_PASSWORD": "yourpassword"
}
}
}
}
search_walkersSearch for available dog walkers by location, date, and service type.
Input:
| Field | Type | Required | Description |
|---|---|---|---|
location |
string | Yes | City, zip, or full address |
date |
string | Yes | Date in YYYY-MM-DD format |
service_type |
"walk" | "sitting" | "boarding" | "daycare" |
Yes | Type of service |
duration_minutes |
number | No | Desired walk duration (20, 30, 60) |
Output: List of walker cards with name, rating, review count, price, availability, and profile URL.
book_walkBook a dog walking session. Requires authentication.
Input:
| Field | Type | Required | Description |
|---|---|---|---|
walker_id |
string | Yes | Walker profile slug or ID |
pet_name |
string | Yes | Name of your pet |
date |
string | Yes | Date in YYYY-MM-DD format |
time |
string | Yes | Start time, e.g. "10:00 AM" |
duration_minutes |
number | Yes | Duration in minutes |
service_type |
string | Yes | Service type |
special_instructions |
string | No | Notes for the walker |
Output: Booking confirmation with booking ID, confirmation URL, and status message.
schedule_recurringSet up a recurring walk schedule. Requires authentication.
Input:
| Field | Type | Required | Description |
|---|---|---|---|
walker_id |
string | Yes | Walker profile slug or ID |
pet_name |
string | Yes | Name of your pet |
days_of_week |
string[] | Yes | Array of days, e.g. ["monday", "wednesday", "friday"] |
time |
string | Yes | Walk time, e.g. "9:00 AM" |
duration_minutes |
number | Yes | Duration in minutes |
service_type |
string | Yes | Service type |
Output: Confirmation of recurring schedule submission.
get_walk_statusCheck the status of a booking and get GPS tracking if in progress. Requires authentication.
Input:
| Field | Type | Required | Description |
|---|---|---|---|
booking_id |
string | Yes | Your booking ID |
Output: Status, walker name, pet name, start/end times, distance walked, live GPS coordinates (if available).
view_walker_profileView a walker's full public profile. No authentication required.
Input:
| Field | Type | Required | Description |
|---|---|---|---|
walker_id |
string | Yes | Walker profile slug or ID |
Output: Full profile including bio, location, rating, review count, pricing per service, certifications, services offered, photos, member since date, repeat client rate, response rate, and up to 5 recent reviews.
rate_walkerSubmit a star rating and written review after a completed walk. Optionally add a tip. Requires authentication.
Input:
| Field | Type | Required | Description |
|---|---|---|---|
booking_id |
string | Yes | Booking ID of the completed walk |
rating |
number | Yes | Star rating 1–5 |
review |
string | Yes | Written review text |
tip_amount |
number | No | Tip in dollars, e.g. 5.00 |
Output: Confirmation that the review was submitted.
get_pet_reportRetrieve the post-walk report card. Requires authentication.
Input:
| Field | Type | Required | Description |
|---|---|---|---|
booking_id |
string | Yes | Your booking ID |
Output: Full report card with walker name, pet name, walk date, duration, distance, steps, average pace, calories burned, potty breaks logged, behavior tags, walker notes, whether a route map is available, and walk photos.
Once connected to Claude Desktop, you can use natural language:
git clone https://github.com/markswendsen-code/mcp-wag.git
cd mcp-wag
npm install
npm run build
# Output: dist/index.js
"WAG_EMAIL and WAG_PASSWORD environment variables are required"
Set these in your shell or in the MCP server config's env block.
Login fails / redirected to login page
WAG_HEADLESS=false to watch the browser and diagnose the issue.No walkers found in search results
WAG_HEADLESS=false to inspect.npx playwright install chromium.Build fails
npm install
node build.js
Make sure Node.js 18+ is installed.
Playwright browser not found
npx playwright install chromium
MIT — Strider Labs
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"mcp-wag": {
"command": "npx",
"args": []
}
}
}