graphlit-mcp-server

Official

webCrawl

Crawls web pages from web site into Graphlit knowledge base. Accepts a URL and an optional read limit for the number of pages to crawl. Uses sitemap.xml to discover pages to be crawled from website. Executes asynchronously and returns the feed identifier.

Input Schema

NameRequiredDescriptionDefault
readLimitNoNumber of web pages to ingest, optional. Defaults to 100.
urlYes

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "readLimit": { "description": "Number of web pages to ingest, optional. Defaults to 100.", "type": "number" }, "url": { "type": "string" } }, "required": [ "url" ], "type": "object" }