TextWeb
Renders web pages as structured text grids for AI agents to browse and interact with, preserving spatial layout without screenshots.
README
TextWeb
A text-grid web renderer for AI agents — see the web without screenshots.
Instead of taking expensive screenshots and piping them through vision models, TextWeb renders web pages as structured text grids that LLMs can reason about natively. Full JavaScript execution, spatial layout preserved, interactive elements annotated.
📄 Documentation · 📦 npm · 🐙 GitHub
Why?
| Approach | Size | Requires | Speed | Spatial Layout |
|---|---|---|---|---|
| Screenshot + Vision | ~1MB | Vision model ($$$) | Slow | Pixel-level |
| Accessibility Tree | ~5KB | Nothing | Fast | ❌ Lost |
| Raw HTML | ~100KB+ | Nothing | Fast | ❌ Lost |
| TextWeb | ~2-5KB | Nothing | Fast | ✅ Preserved |
Quick Start
npm install -g textweb
npx playwright install chromium
# Render any page
textweb https://news.ycombinator.com
# Explicitly request grid mode (same as default)
textweb --output grid https://news.ycombinator.com
# Semantic JSON output for agent workflows
textweb --output semantic https://example.com
# Hybrid output (grid + semantic metadata)
textweb --output hybrid https://example.com
# Interactive mode
textweb --interactive https://github.com
# Legacy JSON output (backward compatible)
textweb --json https://example.com
Example Output
[0]Hacker News [1]new | [2]past | [3]comments | [4]ask | [5]show | [6]jobs | [7]submit [8]login
1. [9]Show HN: TextWeb – text-grid browser for AI agents (github.com)
142 points by chrisrobison 3 hours ago | [10]89 comments
2. [11]Why LLMs don't need screenshots to browse the web
87 points by somebody 5 hours ago | [12]34 comments
[13:______________________] [14 Search]
~500 bytes. An LLM can read this, understand the layout, and say "click ref 9" to open the first link. No vision model needed.
Integration Options
TextWeb works with any AI agent framework. Pick your integration:
🔌 MCP Server (Claude Desktop, Cursor, Windsurf, Cline, OpenClaw)
The fastest way to add web browsing to any MCP-compatible client.
# Install globally
npm install -g textweb
# Or run directly
npx textweb-mcp
Claude Desktop — add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"textweb": {
"command": "textweb-mcp"
}
}
}
Cursor — add to .cursor/mcp.json:
{
"mcpServers": {
"textweb": {
"command": "textweb-mcp"
}
}
}
OpenClaw — add to openclaw.json skills or MCP config.
Then just ask: "Go to hacker news and find posts about AI" — the agent uses text grids instead of screenshots.
New (v0.2.1-style MCP capabilities):
session_idon every tool call for isolated parallel workflowstextweb_storage_save/textweb_storage_loadfor persistent auth/session statetextweb_wait_forfor multi-step async UI transitionstextweb_assert_fieldfor flow guards before submit
🛠️ OpenAI / Anthropic Function Calling
Drop-in tool definitions for any function-calling model. See tools/tool_definitions.json.
Pair with the system prompt to teach the model how to read the grid:
import json
# Load tool definitions
with open("tools/tool_definitions.json") as f:
textweb_tools = json.load(f)["tools"]
# Load system prompt
with open("tools/system_prompt.md") as f:
system_prompt = f.read()
# Use with OpenAI
response = openai.chat.completions.create(
model="gpt-4",
messages=[
{"role": "system", "content": system_prompt},
{"role": "user", "content": "Go to example.com and click the first link"},
],
tools=textweb_tools,
)
🦜 LangChain
from tools.langchain import get_textweb_tools
# Start the server first: textweb --serve 3000
tools = get_textweb_tools(base_url="http://localhost:3000")
# Use with any LangChain agent
from langchain.agents import initialize_agent
agent = initialize_agent(tools, llm, agent="zero-shot-react-description")
agent.run("Find the top story on Hacker News")
🚢 CrewAI
from tools.crewai import TextWebBrowseTool, TextWebClickTool, TextWebTypeTool
# Start the server first: textweb --serve 3000
researcher = Agent(
role="Web Researcher",
tools=[TextWebBrowseTool(), TextWebClickTool(), TextWebTypeTool()],
llm=llm,
)
🌐 HTTP API
# Start the server
textweb --serve 3000
# Navigate
curl -X POST http://localhost:3000/navigate \
-H 'Content-Type: application/json' \
-d '{"url": "https://example.com"}'
# Click, type, scroll
curl -X POST http://localhost:3000/click -d '{"ref": 3}'
curl -X POST http://localhost:3000/type -d '{"ref": 7, "text": "hello"}'
curl -X POST http://localhost:3000/scroll -d '{"direction": "down"}'
📦 Node.js Library
const { AgentBrowser } = require('textweb');
const browser = new AgentBrowser({ cols: 120 });
const { view, elements, semantic, meta } = await browser.navigate('https://example.com');
console.log(view); // The text grid
console.log(elements); // { 0: { selector, tag, text, href }, ... }
console.log(semantic); // { mode, url, title, elements: [...] }
console.log(meta.stats); // { totalElements, interactiveElements, renderMs }
await browser.click(3); // Click element [3]
await browser.type(7, 'hello'); // Type into element [7]
await browser.scroll('down'); // Scroll down
await browser.waitFor({ selector: '.step-2.active' }); // Wait for next step
await browser.assertField(7, 'hello', { comparator: 'equals' }); // Validate field state
await browser.saveStorageState('/tmp/textweb-state.json');
await browser.loadStorageState('/tmp/textweb-state.json');
await browser.query('nav a'); // Find elements by CSS selector
await browser.screenshot(); // PNG buffer (for debugging)
console.log(browser.getCurrentUrl());// Current page URL
await browser.close();
Grid Conventions
| Element | Rendering | Interaction |
|---|---|---|
| Links | [ref]link text |
click(ref) |
| Buttons | [ref button text] |
click(ref) |
| Text inputs | [ref:placeholder____] |
type(ref, "text") |
| Checkboxes | [ref:X] / [ref: ] |
click(ref) to toggle |
| Radio buttons | [ref:●] / [ref:○] |
click(ref) |
| Dropdowns | [ref:▼ Selected] |
select(ref, "value") |
| File inputs | [ref:📎 Choose file] |
upload(ref, "/path") |
| Headings | ═══ HEADING ═══ |
— |
| Separators | ──────────────── |
— |
| List items | • Item text |
— |
How It Works
┌─────────────────────────────────────────────┐
│ Your Agent (any LLM) │
│ "click 3" / "type 7 hello" / "scroll down" │
├─────────────────────────────────────────────┤
│ TextWeb │
│ Pixel positions → character grid │
│ Interactive elements get [ref] annotations │
├─────────────────────────────────────────────┤
│ Headless Chromium (Playwright) │
│ Full JS/CSS execution │
│ getBoundingClientRect() for all elements │
└─────────────────────────────────────────────┘
- Real browser renders the page (full JS, CSS, dynamic content)
- Extract every visible element's position, size, text, and interactivity
- Map pixel coordinates to character grid positions (spatial layout preserved)
- Annotate interactive elements with
[ref]numbers for agent interaction
Selector Strategy
TextWeb builds stable CSS selectors for each interactive element, preferring resilient strategies over brittle positional ones:
| Priority | Strategy | Example |
|---|---|---|
| 1 | #id |
#email |
| 2 | [data-testid] |
[data-testid="submit-btn"] |
| 3 | [aria-label] |
input[aria-label="Search"] |
| 4 | [role] (if unique) |
[role="navigation"] |
| 5 | [name] |
input[name="email"] |
| 6 | a[href] (if unique) |
a[href="/about"] |
| 7 | nth-child (fallback) |
div > a:nth-child(3) |
This means selectors survive DOM changes between snapshots — critical for multi-step agent workflows.
ATS Workflow Examples (Greenhouse / Lever)
For multi-step ATS flows, use a stable session_id and combine wait/assert guards:
// Keep one session for the whole application
await textweb_navigate({ url: 'https://job-boards.greenhouse.io/acme/jobs/123', session_id: 'apply-acme' });
// Fill + continue
await textweb_type({ ref: 12, text: 'Christopher', session_id: 'apply-acme' });
await textweb_type({ ref: 15, text: 'Robison', session_id: 'apply-acme' });
await textweb_click({ ref: 42, session_id: 'apply-acme', retries: 3, retry_delay_ms: 400 });
// Guard transition
await textweb_wait_for({ selector: '#step-2.active', timeout_ms: 8000, session_id: 'apply-acme', retries: 2 });
// Validate before submit
await textweb_assert_field({ ref: 77, expected: 'San Francisco', comparator: 'includes', session_id: 'apply-acme' });
// Persist auth/session for follow-up flow
await textweb_storage_save({ path: '/tmp/ats-state.json', session_id: 'apply-acme' });
Useful session tools:
textweb_session_list→ inspect active sessionstextweb_session_close→ close one session or all
App Runtime Prototype (Manifest + LARC)
This repository now includes an early scaffold for a manifest-driven user runtime shell (separate from low-level raw admin tooling):
- Manifest validator:
src/app-runtime/manifest.js - PAN topic contract:
src/app-runtime/topics.js - Runtime shell + left nav + tabbed content:
canvas/app-runtime/app-shell.html - Sample manifest:
canvas/app-runtime/sample-app.json
The runtime shell uses LARC PAN (@larcjs/core-lite) for in-page event communication, with a local fallback bus if the module cannot be loaded.
To open the prototype:
# Start API server for integration hooks (save manifest/components)
npm run serve
# In another terminal, open the runtime shell
open /Users/cdr/Projects/textweb/canvas/app-runtime/app-shell.html
Integration actions implemented on the API server:
POST /integrations/sync_saved_formPOST /integrations/save_manifestPOST /integrations/upsert_nav_itemPOST /integrations/runtime_state
Testing
# Run all tests (form + live + ATS e2e)
npm test
# Form fixture tests
npm run test:form
# Live site tests — example.com, HN, Wikipedia
npm run test:live
# ATS multi-step fixture test
npm run test:ats
Test fixtures are in test/fixtures/ — includes a comprehensive HTML form and an ATS-style multi-step application fixture.
Design Principles
- Text is native to LLMs — no vision model middleman
- Spatial layout matters — flat element lists lose the "where"
- Cheap and fast — 2-5KB per render vs 1MB+ screenshots
- Full web support — real Chromium runs the JS
- Interactive — reference numbers map to real DOM elements
License
MIT © Christopher Robison
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。