get_page_content
Fetch the content of a Scrapbox page using its URL with the Scrapbox MCP Server. Extract text data for analysis or integration into workflows.
Instructions
Fetch content from a Scrapbox page by URL
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | Yes | Scrapbox page URL (e.g., https://scrapbox.io/project-name/page-title) |
Input Schema (JSON Schema)
{
"properties": {
"url": {
"description": "Scrapbox page URL (e.g., https://scrapbox.io/project-name/page-title)",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}