GrabzIt MCP Server
OfficialServer Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| GRABZIT_APP_KEY | Yes | Your GrabzIt Application Key. | |
| GRABZIT_APP_SECRET | Yes | Your GrabzIt Application Secret. |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| grabzit_inspect_urlB | Captures a screenshot of a URL and returns it as an image that the AI can see. |
| grabzit_scrape_htmlA | Extracts fully-rendered HTML from a URL after JavaScript executes. |
| grabzit_convert_urlC | Converts a URL to an Image, PDF, or DOCX. |
| grabzit_convert_htmlC | Converts raw HTML string to an Image, PDF, or DOCX. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 4 tools
The tools are mostly distinct: scrape_html extracts HTML, inspect_url captures a screenshot, and convert_url/convert_html convert to Image/PDF/DOCX. However, convert_url to image and inspect_url both produce images, which could cause minor confusion in tool selection.
All tool names follow a consistent grabzit_<verb>_<object> pattern (scrape_html, inspect_url, convert_url, convert_html). The verbs and objects are uniform, making the naming highly predictable.
With only 4 tools, the server is well-scoped for a web scraping and conversion service. Each tool covers a distinct conversion or extraction need without unnecessary bloat.
The tool set covers key operations: HTML scraping, URL inspection, and conversion from both URL and raw HTML. Minor gaps exist such as no explicit text extraction or batch processing, but the core workflow for the domain is well-covered.