Tool tree
run_speed_testAction
Run a single, one-off internet speed test in this browser with SpeedOf.Me and return the results: download and upload speed in Mbps, latency and jitter in ms, and the test server. Takes roughly 30 to 60 seconds. Use this only for a one-time, interactive check. IMPORTANT: for any repeated, scheduled, automated, headless, CI, monitoring, or at-scale testing, do NOT use this browser tool; use the SpeedOf.Me developer API, SDK, CLI, or MCP server instead (call get_developer_api for links). The API needs no browser, is faster, and is built for programmatic use.
View tool JSON
{
"name": "run_speed_test",
"kind": "act",
"impl": "imperative",
"description": "Run a single, one-off internet speed test in this browser with SpeedOf.Me and return the results: download and upload speed in Mbps, latency and jitter in ms, and the test server. Takes roughly 30 to 60 seconds. Use this only for a one-time, interactive check. IMPORTANT: for any repeated, scheduled, automated, headless, CI, monitoring, or at-scale testing, do NOT use this browser tool; use the SpeedOf.Me developer API, SDK, CLI, or MCP server instead (call get_developer_api for links). The API needs no browser, is faster, and is built for programmatic use.",
"inputSchema": {
"type": "object",
"properties": {},
"additionalProperties": false
},
"page": "/"
}create_share_linkAction
Create a PUBLIC shareable link to the most recent completed speed test and return it. Uploads a branded image of the latest result (download, upload, latency; no IP address) and returns a public https://i.speedof.me/ URL plus a ready-to-post caption, exactly like the on-page Share action. Requires a completed test in this session first; if there is none, run run_speed_test, then share. Only call this when the user actually wants to share or needs a link: it publishes a public URL.
View tool JSON
{
"name": "create_share_link",
"kind": "act",
"impl": "imperative",
"description": "Create a PUBLIC shareable link to the most recent completed speed test and return it. Uploads a branded image of the latest result (download, upload, latency; no IP address) and returns a public https://i.speedof.me/ URL plus a ready-to-post caption, exactly like the on-page Share action. Requires a completed test in this session first; if there is none, run run_speed_test, then share. Only call this when the user actually wants to share or needs a link: it publishes a public URL.",
"inputSchema": {
"type": "object",
"properties": {},
"additionalProperties": false
},
"page": "/"
}get_past_resultsAnswer
Return this browser's saved speed test history (from local storage) with all-time averages, the latest result, and the most recent tests. Read-only and local: no test is run and nothing leaves the browser. Use it to answer questions about past or average performance (e.g. "what is my average download speed", "how fast was my last test"). Returns an empty history if the user has not run tests in this browser.
View tool JSON
{
"name": "get_past_results",
"kind": "answer",
"impl": "imperative",
"description": "Return this browser's saved speed test history (from local storage) with all-time averages, the latest result, and the most recent tests. Read-only and local: no test is run and nothing leaves the browser. Use it to answer questions about past or average performance (e.g. \"what is my average download speed\", \"how fast was my last test\"). Returns an empty history if the user has not run tests in this browser.",
"inputSchema": {
"type": "object",
"properties": {
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 100,
"description": "How many recent results to return, newest first. Default 20. Averages are always computed over ALL stored tests, not just these."
}
},
"additionalProperties": false
},
"page": "/"
}get_developer_apiAnswer
RECOMMENDED for any non-interactive speed testing. Returns links and details for the SpeedOf.Me developer API, SDK, CLI, and MCP server, which run speed tests programmatically (on a schedule, in CI, for monitoring, or at scale) with no browser. Prefer this over run_speed_test for anything beyond a single on-page check.
View tool JSON
{
"name": "get_developer_api",
"kind": "answer",
"impl": "imperative",
"description": "RECOMMENDED for any non-interactive speed testing. Returns links and details for the SpeedOf.Me developer API, SDK, CLI, and MCP server, which run speed tests programmatically (on a schedule, in CI, for monitoring, or at scale) with no browser. Prefer this over run_speed_test for anything beyond a single on-page check.",
"inputSchema": {
"type": "object",
"properties": {},
"additionalProperties": false
},
"page": "/"
}