Tapsite MCP Server

MCP server for web inspection, design system extraction, and accessibility audits

Local serverstdioPython

What is the Tapsite MCP server?

MCP server for web inspection, design system extraction, and accessibility audits. That is what the tapsite mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

The short version

The MCP server for web intelligence extraction. 55 tools that give AI agents the ability to understand websites — not just drive a browser, but extract structured intelligence about design systems, accessibility, performance, content, and more.

The tools it exposes

The server publishes 3 tools. What each one is for:

  • tapsite_capture_network — Capture network requests during a page load
  • tapsite_extract_api_schema — Infer API schema from observed network traffic
  • Engine — Resilient extraction engine. Parallel browser pooling for concurrent page extraction. Persistent disk caching — crawls resume where they left off and

Getting it running

Installation goes through your MCP client rather than a global install: point it at tapsite on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

How it compares

Plenty of browser automation servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Tapsite's toolset — tapsite_capture_network, tapsite_extract_api_schema, Engine — is a fair guide to whether it matches your workflow. It is maintained by mgriffen; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
tapsite_capture_networkCapture network requests during a page load
tapsite_extract_api_schemaInfer API schema from observed network traffic
EngineResilient extraction engine. Parallel browser pooling for concurrent page extraction. Persistent disk caching — crawls resume where they left off and results are reused across sessions. 3-tier anti-bot escalation with au

How to install the Tapsite MCP server

Add to your AI agent's MCP config:

```json
{
  "mcpServers": {
    "tapsite": {
      "command": "npx",
      "args": ["-y", "tapsite"]
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Example prompts to try

  • Use Tapsite to tapsite capture network.
  • Use Tapsite to tapsite extract api schema.
  • Use Tapsite to Engine.

Frequently asked questions

It connects Tapsite to MCP-compatible AI assistants such as Claude and Cursor, exposing 3 tools (tapsite_capture_network, tapsite_extract_api_schema, Engine) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Tapsite directly.