linewatch-mcp
Uses Cloudflare's public speed test endpoints for measuring internet speed and latency.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@linewatch-mcpRun a speed test and summarize my connection over the past 7 days."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Linewatch
Internet quality over time — agent-native. A simplified speedtest.net that doesn't stop at one number: it keeps measuring, charts the trend, records dropouts, and hands the evidence to you (or your AI agent) as clean JSON.
Built 19 Aug 2026. Working label — naming can go through the usual round later.
Why it exists
A point-in-time speed test can look fine while the line is actually flapping or sagging every evening. Three failure modes need three kinds of measurement:
Failure mode | What catches it |
Throughput sag (paying for 300, getting 60) | scheduled speed tests |
Flapping (start-stop-start dropouts) | cheap latency probes every 45 s |
Latency/bufferbloat (speed fine, calls stutter) | latency + jitter per measurement |
Design principle: heavy tests sparsely, cheap tests densely.
No servers of our own: measurement runs against Cloudflare's public, CORS-open speed endpoints
(speed.cloudflare.com), so the engine works from any browser or Node process for free.
Related MCP server: netops-mcp
Layout
packages/core isomorphic measurement engine + stats + types (browser & Node)
packages/cli `linewatch` CLI — every command speaks --json; JSONL store in ~/.linewatch/
packages/mcp MCP server (stdio) — agents run tests & read history, zero login
apps/web PWA — GO button + live gauge, Monitor mode, history charts, CSV exportQuickstart
npm install
npm run build
# human: web app
npm run dev # → http://localhost:5173 (installable as a PWA)
# human or agent: CLI
node packages/cli/dist/index.js test # one speed test
node packages/cli/dist/index.js monitor # test every 15m + probe every 45s
node packages/cli/dist/index.js summary --since 7d --json
# agent: MCP (Claude Code)
claude mcp add -s user linewatch -- node $(pwd)/packages/mcp/dist/index.jsMCP tools: run_speed_test, run_latency_probe, get_history, get_summary, get_store_info.
Agent-native principles
No interactive auth for machines. CLI and MCP hit the same local JSONL store (
~/.linewatch/results.jsonl) — append-only, greppable, parseable.JSON is the first-class output; the human UI is a rendering of the same rows.
Cheap primitives for autonomous use: an agent that suspects network trouble calls
run_latency_probe(<2 s, ~zero data) and only escalates torun_speed_test(~20 s, ~100–500 MB) when needed — the tool descriptions state those costs so agents can decide.
Data notes
A speed test transfers data at full line rate for ~18 s: roughly
line_Mbps × 18 / 8MB per test. Monitor mode at 15 min on a 100 Mbps line ≈ 20+ GB/day — fine on unlimited fibre, choose a slower cadence on capped plans.Web results live in the browser's IndexedDB; CLI/MCP results in
~/.linewatch/. They merge in Phase B (cloud sync).
See ROADMAP.md for where this goes (cloud sync, alerts, tray app, mobile, product).
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- PythonMIT
- Alicense-qualityBmaintenanceProvides network operations tools such as ping, traceroute, DNS queries, and nmap scans via MCP, enabling network diagnostics and monitoring through natural language.13MIT
- Flicense-qualityDmaintenanceEnables AI agents and users to manage workspace files, monitor system metrics, take persistent notes, and retrieve weather data via MCP tools and resources.
- Alicense-qualityDmaintenanceEnables AI assistants to perform real network diagnostics on the local machine, including ping, traceroute, DNS lookups, TLS checks, and more.MIT
Related MCP Connectors
Shared long-term memory vault for AI agents with 20 MCP tools.
Shared, governed long-term memory for AI agents across tools and sessions via MCP and REST.
Web tools for agents: fetch URL as markdown (free MCP) + x402 scrape, links, AI JSON, snapshot.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/arunanksharan/linewatch'
If you have feedback or need assistance with the MCP directory API, please join our Discord server