← WebMCP Directory

Tool tree

bemoacademicconsulting.com

Health & Education
https://bemoacademicconsulting.com/
Admissions consulting and test preparation
Explore capabilities

Tools verified

get_page_infoAnswer

Returns metadata and available structured sections for the current page. This tool never changes the page or server state.

View tool JSON
{
  "name": "get_page_info",
  "kind": "answer",
  "impl": "imperative",
  "description": "Returns metadata and available structured sections for the current page. This tool never changes the page or server state.",
  "inputSchema": {
    "type": "object",
    "properties": {},
    "additionalProperties": false
  }
}
list_page_sectionsAnswer

Lists the structured sections available to read on the current page, including their paths and approximate text sizes.

View tool JSON
{
  "name": "list_page_sections",
  "kind": "answer",
  "impl": "imperative",
  "description": "Lists the structured sections available to read on the current page, including their paths and approximate text sizes.",
  "inputSchema": {
    "type": "object",
    "properties": {},
    "additionalProperties": false
  }
}
read_page_contentAnswer

Reads structured content from the current page without changing it. Optionally select a section path and use the returned nextCursor to continue long content.

View tool JSON
{
  "name": "read_page_content",
  "kind": "answer",
  "impl": "imperative",
  "description": "Reads structured content from the current page without changing it. Optionally select a section path and use the returned nextCursor to continue long content.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "section": {
        "type": "string",
        "description": "Optional section path from list_page_sections. Omit to read all structured page content."
      },
      "cursor": {
        "type": "integer",
        "minimum": 0,
        "description": "Character cursor returned by a previous call. Defaults to 0."
      },
      "maxCharacters": {
        "type": "integer",
        "minimum": 200,
        "maximum": 1500,
        "description": "Maximum characters to return, from 200 to 1500."
      }
    },
    "additionalProperties": false
  }
}
search_page_contentAnswer

Searches the structured content embedded in the current page and returns matching paths and concise snippets. This tool does not navigate or submit anything.

View tool JSON
{
  "name": "search_page_content",
  "kind": "answer",
  "impl": "imperative",
  "description": "Searches the structured content embedded in the current page and returns matching paths and concise snippets. This tool does not navigate or submit anything.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "query": {
        "type": "string",
        "minLength": 1,
        "description": "Text to find in the current page content."
      },
      "limit": {
        "type": "integer",
        "minimum": 1,
        "maximum": 10,
        "description": "Maximum number of matches to return. Defaults to 5."
      }
    },
    "required": [
      "query"
    ],
    "additionalProperties": false
  }
}