Groundlane
An MCP server that gives AI agents controlled access to the web, offering unified tools for fetching pages as Markdown, searching across multiple providers, and extracting structured data via CSS selectors.
README
Groundlane
The trusted web access layer for AI agents.
Groundlane is an open-source, vendor-neutral remote MCP server for giving AI agents controlled access to the public web. It presents one stable interface for search, retrieval, and deterministic extraction, routes search to replaceable providers, and escalates difficult Markdown reads through an optional Jina Reader before using an isolated local or Browserless browser.
[!IMPORTANT] Groundlane is an early preview. Its tool contracts and deployment model are still evolving; do not treat the current release as a hosted service or a universal anti-bot bypass.
Why Groundlane?
- Model neutral: connect any Streamable HTTP MCP client instead of depending on a model vendor's built-in web tool.
- Provider neutral: route across search APIs with recurring monthly free allowances behind one normalized result contract.
- HTTP first, browser when necessary: keep ordinary reads fast and reserve Chromium for JavaScript, wait conditions, and supported fallback signals.
- Deterministic extraction: select fields with CSS selectors and receive structured JSON without an implicit LLM step.
- Security first: authenticate the MCP endpoint and apply URL, redirect, network, deadline, byte, output, and concurrency limits.
- Self-controlled deployment: run the control plane and browser workload in your own environment, including Cloudflare Workers and Containers.
MVP tools
| Tool | Purpose | Current scope |
|---|---|---|
web_fetch |
Retrieve a URL as Markdown, text, or HTML | Bounded HTTP, optional Jina Reader, then browser fallback |
web_search |
Search through a configured provider | Explicit or automatic routing across seven providers |
web_extract |
Extract named fields from a page | CSS selectors; text, HTML, or attribute values |
Browser automation is an internal implementation detail called Groundlane Browser. Groundlane does not expose persistent browser sessions in the MVP.
Quick start
Prerequisites
- Node.js 22 or newer
- pnpm 10
- Chromium for browser fallback
- At least one supported monthly-free search provider key if you want to use
web_search(Tavily, Exa, Parallel, Browserbase, Brave, Firecrawl, or SerpApi)
Run locally
Clone this repository, then run:
pnpm install
pnpm exec playwright install chromium
cp .env.example .env
set -a
source .env
set +a
pnpm dev
Set a strong GROUNDLANE_AUTH_TOKEN in .env. Add one or more supported provider keys to enable search. The local server listens on the configured PORT and serves:
POST /mcp— authenticated Streamable HTTP MCP endpointGET /healthz— process livenessGET /readyz— Container reachability and service configuration readiness
Connect an MCP client
Configure a Streamable HTTP MCP client with the server URL and bearer token. Client configuration shapes differ, but the connection values are:
URL: http://localhost:8080/mcp
Authorization: Bearer <GROUNDLANE_AUTH_TOKEN>
Never put the token in a query string or commit it to source control.
With the server running, open another shell, load the same .env, and verify the MCP handshake and public HTTP path:
set -a
source .env
set +a
pnpm smoke
Set GROUNDLANE_SMOKE_BROWSER=1 to include the browser path.
Configuration
Groundlane reads configuration from environment variables. See .env.example for a complete local template.
| Variable | Purpose | Default/example |
|---|---|---|
GROUNDLANE_AUTH_TOKEN |
Bearer token required by /mcp |
Required |
SEARCH_PROVIDER_ORDER |
Ordered automatic-routing candidates | tavily,exa,parallel,browserbase,brave,firecrawl,serpapi |
SEARCH_MONTHLY_REQUEST_BUDGETS |
Per-instance provider attempt caps, reset each UTC month | Conservative free-plan defaults |
TAVILY_API_KEY |
Tavily adapter credential | Optional |
EXA_API_KEY |
Exa adapter credential | Optional |
FIRECRAWL_API_KEY |
Firecrawl Search adapter credential | Optional |
SERPAPI_API_KEY |
SerpApi Google Search adapter credential | Optional |
BROWSERBASE_API_KEY |
Browserbase Search adapter credential | Optional |
PARALLEL_API_KEY |
Parallel Search adapter credential | Optional |
BRAVE_API_KEY |
Brave Search adapter credential | Optional |
READER_BACKEND |
Markdown Reader fallback: disabled or jina |
disabled by default |
BROWSER_BACKEND |
Browser capability: disabled, local, or browserless |
disabled by default; local template uses local |
BROWSERLESS_TOKEN |
Browserless /content credential |
Required only for browserless |
BROWSERLESS_REGION |
Browserless endpoint region: sfo, lon, or ams |
sfo |
REQUEST_TIMEOUT_MS |
End-to-end request deadline | 30000 locally |
MAX_RESPONSE_BYTES |
Maximum upstream response bytes | 2000000 locally |
MAX_OUTPUT_CHARS |
Maximum returned text characters | 100000 locally |
MAX_CONCURRENCY |
Maximum active requests | 4 locally |
MAX_QUEUE |
Maximum queued requests | 16 locally |
Missing search credentials do not prevent web_fetch or web_extract from working. They do make the corresponding search provider unavailable.
Monthly budgets count attempted provider requests, including retryable failures, and prevent a running Groundlane instance from selecting a provider after its configured cap. They are deliberately conservative, but they are not billing truth: Containers restart, multiple instances do not share counters, and some providers charge variable credits. Keep provider-side spend limits enabled and override the budgets for your actual plans.
Architecture
MCP client
|
v
Cloudflare Worker / Node HTTP edge
| authentication, limits, request identity
v
tool registry
|-- web_search -> monthly-free provider router (7 adapters)
|-- web_fetch -> safe HTTP -> optional Jina Reader -> browser fallback
`-- web_extract -> fetch pipeline -> deterministic DOM extraction
Core policies and contracts do not depend on a provider or browser runtime. Adapters sit behind narrow interfaces. The browser backend can be Container-local Playwright or Browserless /content; engine and backend output fields disclose which path produced a result without changing the public MCP tools. Hosted backends receive the requested public URL, so they are opt-in rather than silent defaults.
Read Architecture for component boundaries, request flow, and design decisions.
Security
Web retrieval is an SSRF-sensitive capability. Groundlane treats user URLs, redirects, browser subresources, and search-provider URLs as untrusted. Deployments should keep authentication enabled, use an outbound network policy, and retain the default resource limits.
The project does not promise universal CAPTCHA solving, invisible automation, or access to content you are not authorized to retrieve. Operators are responsible for target-site terms, robots policies, privacy obligations, and applicable law.
See SECURITY.md for the security model and private vulnerability reporting process.
Deployment
The intended production topology uses a Cloudflare Worker as the public control plane and a Cloudflare Container for the Node/Playwright browser workload. For prerequisites, secrets, deployment steps, and verification, see Deploying on Cloudflare.
Roadmap
- [x] Define the vendor-neutral
web_fetch,web_search, and deterministicweb_extractsurface - [x] Add opt-in Jina Reader and Browserless retrieval backends with provenance
- [ ] Stabilize MCP contracts and publish compatibility fixtures
- [ ] Harden Cloudflare Worker + Container deployment and operational telemetry
- [ ] Add cache adapters and provider health/cost-aware routing
- [ ] Add opt-in batch/crawl primitives with explicit budgets
- [ ] Evaluate stateful browser sessions as a separate, lifecycle-safe capability
The roadmap is directional, not a release commitment. See the research archive for the evidence behind the current scope.
Documentation
- Architecture
- MVP product requirements
- Cloudflare deployment
- Security policy
- Contributing
- Research archive
Contributing
Issues and pull requests are welcome. Before contributing, read CONTRIBUTING.md and the Code of Conduct. Security vulnerabilities must be reported privately as described in SECURITY.md.
License
Groundlane is licensed under the Apache License 2.0.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。
mcp-server-qdrant
这个仓库展示了如何为向量搜索引擎 Qdrant 创建一个 MCP (Managed Control Plane) 服务器的示例。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。