WebMCP

DeveloperWebMCP verified

readmbox.com WebMCP tools

Open MBOX files in your browser with no software to install. Read Google Takeout and Thunderbird exports, search by sender, subject or date, and export to CSV, Excel, PDF or EML. Your mail never…

6 tools1 methodsspec API surface

What can an agent do with readmbox.com WebMCP tools?

Open MBOX files in your browser with no software to install. Read Google Takeout and Thunderbird exports, search by sender, subject or date, and export to CSV, Excel, PDF or EML. Your mail never… This page documents every listed tool, the action or answer it provides, its installation command, and the input fields an agent should send.

WebMCP tools on readmbox.com

Tool 1 of 6WebMCPAnswer

get_mailbox_status

Report whether an MBOX file is open in this tab and what is in it: message count, date span, how many messages the current filters match, and whether the mailbox is fully readable. Call this first.

How to install

Open the readmbox.com website and ask your browser agent to use get_mailbox_status

Install browse first, then run the command in a terminal. WebMCP tools run directly on the website and do not need a package install.

Run with an agent

Use the get_mailbox_status tool on readmbox.com. Return the structured result and cite the source page.

Input contract

    Open the source definition

    Tool 2 of 6WebMCPAnswer

    list_messages

    List messages currently shown in the reader, newest-first or in whatever order the page is sorted by. Returns index, date, sender and subject only. Cheap at any mailbox size. Use read_message for the body.

    How to install

    Open the readmbox.com website and ask your browser agent to use list_messages

    Install browse first, then run the command in a terminal. WebMCP tools run directly on the website and do not need a package install.

    Run with an agent

    Use the list_messages tool on readmbox.com with offset: <integer>, limit: <integer>. Return the structured result and cite the source page.

    Input contract

    • offset integer Start position in the current view. Default 0.
    • limit integer How many to return, up to 50. Default 25.

    Open the source definition

    Tool 3 of 6WebMCPAnswer

    read_message

    Read one message in full: headers, plain-text body, and the names and sizes of its attachments. Attachment contents are not available. Use an index from list_messages or scan_messages.

    How to install

    Open the readmbox.com website and ask your browser agent to use read_message

    Install browse first, then run the command in a terminal. WebMCP tools run directly on the website and do not need a package install.

    Run with an agent

    Use the read_message tool on readmbox.com with index: <integer>. Return the structured result and cite the source page.

    Input contract

    • index integer Message index within the mailbox.

    Open the source definition

    Tool 4 of 6WebMCPAction

    filter_by_date

    Narrow the reader to a date range and/or change the sort order. Works instantly on any mailbox size because dates are already indexed. Updates what the person sees on screen. Does not do text search — that is scan_messages.

    How to install

    Open the readmbox.com website and ask your browser agent to use filter_by_date

    Install browse first, then run the command in a terminal. WebMCP tools run directly on the website and do not need a package install.

    Run with an agent

    Use the filter_by_date tool on readmbox.com with from: <string>, to: <string>, sort_by: <string>. Return the structured result and cite the source page.

    Input contract

    • from string Earliest date, YYYY-MM-DD. Omit for no lower bound.
    • to string Latest date, YYYY-MM-DD. Omit for no upper bound.
    • sort_by string Sort order for the list.

    Open the source definition

    Tool 5 of 6WebMCPAction

    clear_filters

    Remove every filter — text query, date range, attachment toggle — and return the reader to the whole mailbox in file order.

    How to install

    Open the readmbox.com website and ask your browser agent to use clear_filters

    Install browse first, then run the command in a terminal. WebMCP tools run directly on the website and do not need a package install.

    Run with an agent

    Use the clear_filters tool on readmbox.com. Return the structured result and cite the source page.

    Input contract

      Open the source definition

      Tool 6 of 6WebMCPAction

      scan_messages

      Search subjects and senders for text, and/or find messages with attachments, optionally within a date range. This reads each message from disk, so it works in bounded passes: if the result says done=false, call again with the returned cursor to continue from where it stopped. Results are reported but do not change what is on screen.

      How to install

      Open the readmbox.com website and ask your browser agent to use scan_messages

      Install browse first, then run the command in a terminal. WebMCP tools run directly on the website and do not need a package install.

      Run with an agent

      Use the scan_messages tool on readmbox.com with query: <string>, from: <string>, to: <string>, has_attachment: <boolean>, cursor: <integer>. Return the structured result and cite the source page.

      Input contract

      • query string Text to look for in subject or sender. Case-insensitive.
      • from string Earliest date, YYYY-MM-DD.
      • to string Latest date, YYYY-MM-DD.
      • has_attachment boolean Only messages carrying an attachment.
      • cursor integer Resume position from a previous call. Omit to start at the beginning.

      Open the source definition