Network
Parse RFC 8288 Link headers with the spec appendix-B algorithm, resolve relative URI-references against a base URL, classify rel types against the IANA registry, validate preload/prefetch hints, and simulate how a rel="next" pagination crawler walks your responses — including cycle detection.
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/http-link-header-rfc8288-parser-and-pagination-crawler-preview' \
-H 'Content-Type: application/json' \
-d '{"linkHeaders":"</search/code?q=addClass&page=15>; rel=\"next\", </search/code?q=addClass&page=34>; rel=\"last\", </search/code?q=addClass&page=1>; rel=\"first\", </search/code?q=addClass&page=14>; rel=\"prev\"","baseUrl":"http://127.0.0.1:8080/search/code?q=addClass&page=1","maxCrawlDepth":10}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/http-link-header-rfc8288-parser-and-pagination-crawler-preview| Name | Type | Required | Description |
|---|---|---|---|
| linkHeaders | textarea | Yes | — |
| baseUrl | text | No | — |
| maxCrawlDepth | number | No | — |
HTML result
{
"result": "<div>Processed HTML content</div>",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}Add this tool to your Model Context Protocol server so AI agents can list and call it.
Add this block to your MCP client configuration:
{
"mcpServers": {
"elysiatools-http-link-header-rfc8288-parser-and-pagination-crawler-preview": {
"name": "http-link-header-rfc8288-parser-and-pagination-crawler-preview",
"description": "Parse RFC 8288 Link headers with the spec appendix-B algorithm, resolve relative URI-references against a base URL, classify rel types against the IANA registry, validate preload/prefetch hints, and simulate how a rel=\"next\" pagination crawler walks your responses — including cycle detection.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=http-link-header-rfc8288-parser-and-pagination-crawler-preview",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}After connecting to the SSE endpoint, list the exposed tools:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoke the tool by its id, passing arguments built from its parameters:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "http-link-header-rfc8288-parser-and-pagination-crawler-preview",
"arguments": {
"linkHeaders": "</search/code?q=addClass&page=15>; rel=\"next\", </search/code?q=addClass&page=34>; rel=\"last\", </search/code?q=addClass&page=1>; rel=\"first\", </search/code?q=addClass&page=14>; rel=\"prev\"",
"baseUrl": "http://127.0.0.1:8080/search/code?q=addClass&page=1",
"maxCrawlDepth": 10
}
}
}Questions or issues? Contact [email protected]