🔍 Prysm MCP Server

🔍 Prysm MCP Server: Web scraping tools for AI assistants with multiple extraction modes and flexible output formats

Local serverstdio

What is the 🔍 Prysm MCP server?

🔍 Prysm MCP Server: Web scraping tools for AI assistants with multiple extraction modes and flexible output formats. The 🔍 prysm mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 6 defined tools rather than through you.

What it actually does

The Prysm MCP (Model Context Protocol) Server enables AI assistants like Claude and others to scrape web content with high accuracy and flexibility.

Its toolset

Everything the assistant can do here goes through one of these:

  • Installation — The Installation tool exposed by this server
  • Usage — The Usage tool exposed by this server
  • scrapeFocused — Fast web scraping optimized for speed (fewer scrolls, main content only)
  • scrapeBalanced — Balanced web scraping approach with good coverage and reasonable speed
  • scrapeDeep — The scrapeDeep tool exposed by this server
  • formatResult — Format scraped data into different structured formats (markdown, HTML, JSON)

Configuration

You will need 2 environment variables: PRYSM_OUTPUT_DIR, PRYSM_IMAGE_OUTPUT_DIR. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Adding it to your client

The server ships on npm as You, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.

When to reach for it

Among the search and retrieval options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. 🔍 Prysm's toolset — Installation, Usage, scrapeFocused and 3 more — is a fair guide to whether it matches your workflow. It is maintained by pinkpixel-dev; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against 🔍 Prysm's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Caveats

  • 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.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the 🔍 prysm mcp server does with a few real requests.

Available tools

ToolWhat it does
InstallationThe Installation tool exposed by this server.
UsageThe Usage tool exposed by this server.
scrapeFocusedFast web scraping optimized for speed (fewer scrolls, main content only).
scrapeBalancedBalanced web scraping approach with good coverage and reasonable speed.
scrapeDeepThe scrapeDeep tool exposed by this server.
formatResultFormat scraped data into different structured formats (markdown, HTML, JSON).

How to install the 🔍 Prysm MCP server

{
  "mcpServers": {
    "prysm": {
      "command": "npx",
      "args": ["-y", "You"],
      "env": {
        "PRYSM_OUTPUT_DIR": "your-value",
        "PRYSM_IMAGE_OUTPUT_DIR": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
PRYSM_OUTPUT_DIRFilesystem location the server is allowed to use.Optional
PRYSM_IMAGE_OUTPUT_DIRFilesystem location the server is allowed to use.Optional

Example prompts to try

  • Use 🔍 Prysm to Installation.
  • Use 🔍 Prysm to Usage.
  • Use 🔍 Prysm to scrapeFocused.

Frequently asked questions

It runs on Node.js and uses Puppeteer for web scraping. Installation is via npm.