Tbro
FreeNot checkedAn MCP server that provides web_search and web_fetch tools returning plain text via the tbro terminal browser to reduce token usage, with the trade-off of no Ja
About
An MCP server that provides web_search and web_fetch tools returning plain text via the tbro terminal browser to reduce token usage, with the trade-off of no JavaScript support.
README
English · Русский
An MCP server that gives Claude two web tools — web_search and web_fetch —
that return plain text instead of HTML. Pages are rendered through the
glyph terminal browser. The point is to
spend fewer tokens on web lookups.
Claude already has web tools, so why this one? Two reasons. glyph reduces a page to just its readable text — no markup, scripts, navigation, or ads — and the result is plain enough that you can grep or trim it before it reaches the model. For a search that works out to roughly 8x fewer tokens.

The trade-off is JavaScript: there isn't any. Single-page apps and dynamic dashboards come back mostly empty, so the tool descriptions tell Claude to fall back to its built-in fetch for those. Static pages, docs, articles, and plain searches are where this earns its keep.
Requirements
glyphon your PATH (or its path inGLYPH_BIN). Install it from the glyph repo withcargo install --locked --path crates/app— it lands in~/.cargo/bin.- Node 18 or newer.
Add it to Claude Code
Published on npm as @k1y0mi/glyph-mcp,
so no build step is needed — npx runs it:
claude mcp add glyph -e GLYPH_BIN=$HOME/.cargo/bin/glyph -- npx -y @k1y0mi/glyph-mcp
Restart Claude Code and the two tools appear. To wire it up by hand instead, add
this to .mcp.json (project) or ~/.claude.json:
{
"mcpServers": {
"glyph": {
"command": "npx",
"args": ["-y", "@k1y0mi/glyph-mcp"],
"env": { "GLYPH_BIN": "/Users/you/.cargo/bin/glyph" }
}
}
}
Build from source
If you'd rather run it from a checkout instead of npm:
npm install
npm run build
claude mcp add glyph -e GLYPH_BIN=$HOME/.cargo/bin/glyph -- node /absolute/path/to/glyph-mcp/build/index.js
Tools
web_search(query, max_chars?)— run a search, get the results as text.web_fetch(url, max_chars?)— pull a single page as text.
max_chars caps the reply (default 8000). GLYPH_BIN points at the binary if
it isn't on your PATH.
Notes
Arguments are passed to glyph via execFile, not a shell, so there's nothing to
inject. Each call times out at 30 seconds. test/smoke.mjs starts the server
over stdio and calls both tools — run it with node test/smoke.mjs after a
build.
License
MIT.
Install Tbro in Claude Desktop, Claude Code & Cursor
unyly install tbro-mcpInstalls into Claude Desktop, Claude Code, Cursor & VS Code — handles npx, uvx and build-from-source repos for you.
First time? Get the CLI: curl -fsSL https://unyly.org/install | sh
Or configure manually
Run in your terminal:
claude mcp add tbro-mcp -- npx -y @k1y0mi/glyph-mcpFAQ
Is Tbro MCP free?
Yes, Tbro MCP is free — one-click install via Unyly at no cost.
Does Tbro need an API key?
No, Tbro runs without API keys or environment variables.
Is Tbro hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install Tbro in Claude Desktop, Claude Code or Cursor?
Open Tbro on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
Playwright
Browser automation, scraping, screenshots
by MicrosoftPuppeteer
Browser automation and web scraping.
by modelcontextprotocolopentabs-dev/opentabs
Plugin-based MCP server + Chrome extension that gives AI agents access to web applications through the user's authenticated browser session. 100+ plugins with a
by opentabs-devrobhunter/agentdeals
1,500+ developer infrastructure deals, free tiers, and startup programs across 54 categories. Search deals, compare vendors, plan stacks, and track pricing chan
by robhunterCompare Tbro with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All browse MCPs
