TrueSearchMCP
Click on "Deploy 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., "@TrueSearchMCPsearch YouTube for recent MCP server tutorials"
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.
TrueSearchMCP
v1.0.0 · Browser-cookie powered Google & YouTube search for AI agents — no API keys, no quotas.
An MCP (Model Context Protocol) server that reads your real browser cookies and searches Google / scrapes YouTube exactly like your browser would.
Status: EXPERIMENTAL / UNSTABLE
⚠️ This software is experimental and unstable.
Scraping breaks when Google/YouTube change their HTML or APIs
No stability guarantees — APIs and tool schemas may change without notice
Cookies are sensitive; never share your
.cookies.jsonChrome v127+ (App-Bound Encryption) requires a remote-debugging workaround
Not audited for security. Use at your own risk.
Suitable for personal experimentation only. Do not use in production.
Related MCP server: youtube-mcp
Tools (8)
Tool | Description |
| Google search using your browser cookies |
| YouTube video search |
| Full video details (title, views, tags, description) |
| Top comments via InnerTube API |
| Extract Firefox cookies (plaintext SQLite) |
| Extract Chrome cookies (DPAPI + AES-GCM) |
| Upload cookies for later use |
| List uploaded cookies |
Resource Usage (measured)
Metric | Value |
Memory (working set) | ~98 MB |
Idle CPU | 0% (event-driven, wakes only on requests) |
Cold start | ~830 ms |
Build size | 123 KB |
node_modules | 165 MB (first install only) |
Source | ~2,100 lines TypeScript |
Largest deps: better-sqlite3 68 MB, koffi 28 MB (native), rest is small.
Release build
npm install # prepare hook compiles TypeScript automatically
npm run build # tsc → build/Release package (ZIP):
# from the project root, after npm run build:
npm run build
# stage + zip (PowerShell):
powershell -NoProfile -Command ^
"$s='%TEMP%\tsmcp-release'; Remove-Item $s -Recurse -Force -EA 0; New-Item -ItemType Directory -Path \"$s\TrueSearchMCP\" | Out-Null;" ^
"Copy-Item build,package.json,package-lock.json,README.md,LICENSE,install.bat,uninstall.bat,tsmcp.bat -Destination \"$s\TrueSearchMCP\" -Recurse;" ^
"Compress-Archive -Path \"$s\TrueSearchMCP\" -DestinationPath 'TrueSearchMCP-1.0.0.zip' -Force"The ZIP contains build/ (runtime JS), install.bat, uninstall.bat, tsmcp.bat, package.json, package-lock.json, README.md, LICENSE — no cookies, no config, no logs, no source.
Windows installer (recommended):
# extract the ZIP, then from the extracted TrueSearchMCP folder:
.\install.batWhat it does:
Copies the app to
%LOCALAPPDATA%\TrueSearchMCPRuns
npm install --omit=dev(one-time dependency setup)Drops a
tsmcp.batshim into%APPDATA%\npm(already on PATH for npm users)
Then in a new CMD/PowerShell window:
tsmcp # interactive menu
tsmcp search "query" # CLI passthrough (any cli.js command)
tsmcp harness listUninstall: run .\uninstall.bat from the release folder (removes the install dir + tsmcp command; harness config entries are left for you to remove manually).
npm pack install (alternative):
npm run release # tsc + npm pack → truesearch-mcp-1.0.0.tgz
npm install -g ./truesearch-mcp-1.0.0.tgzReleasing to GitHub (not yet done)
git commit -m "Release v1.0.0"
git tag v1.0.0
git remote add origin <your-github-repo-url>
git push -u origin main --tagsThen attach TrueSearchMCP-1.0.0.zip to the GitHub Release for v1.0.0.
.cookies.json,.config.json,mcp.log,build/,node_modules/,*.zipare gitignored — cookies never enter the repo.
Installation
1. From source (GitHub code download)
git clone <repo-url>
cd TrueSearchMCP
.\install.bat # auto-builds if build/ is missing (needs Node.js 18+), then installsinstall.bat works on both the release ZIP (pre-built build/) and a raw source checkout — it detects src/ and runs npm install (which triggers tsc) automatically. You can also build manually with npm install and wire up Claude only via npm run config -- install both.
The MCP entry point after build is <repo>/build/index.js.
2. Add to a harness
⚠️ All harness installs are EXPERIMENTAL / UNSTABLE. Config formats change between harness versions; tool schemas may shift without notice. Verify with the harness's MCP status command after adding.
# | Harness | Config location | Install command / snippet |
1 | Claude Desktop |
| JSON below, or |
2 | Claude Code |
|
|
3 | Hermes (Nous Research) |
| YAML below ( |
4 | OpenCode |
| JSON below ( |
5 | Cline / Roo Code (CLI + VS Code) |
| JSON below |
6 | Cursor |
| JSON below ( |
7 | Goose (Block) |
| YAML below ( |
8 | Zed |
| JSON below ( |
9 | Windsurf |
| JSON below ( |
Claude Desktop
%AppData%\Claude\claude_desktop_config.json:
{
"mcpServers": {
"truesearch": {
"command": "node",
"args": ["D:\\TrueSearchMCP\\build\\index.js"],
"type": "stdio"
}
}
}Restart Claude Desktop after saving.
Claude Code
CLI (recommended):
claude mcp add --scope user truesearch -- node D:\TrueSearchMCP\build\index.js
claude mcp list # verify: ✔ ConnectedOr edit ~/.claude.json (user scope) / .mcp.json (project scope):
{
"mcpServers": {
"truesearch": {
"type": "stdio",
"command": "node",
"args": ["D:\\TrueSearchMCP\\build\\index.js"]
}
}
}Verify inside a session with /mcp.
Hermes
Append to ~/.hermes/config.yaml (or %AppData%\hermes\config.yaml), then /reload-mcp:
mcp_servers:
truesearch:
command: "node"
args: ["D:/TrueSearchMCP/build/index.js"]
enabled: true
timeout: 120Tools appear as mcp__truesearch__search_google, etc.
OpenCode
~/.config/opencode/opencode.json (note: type must be "local", not "stdio"):
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"truesearch": {
"type": "local",
"command": ["node", "D:/TrueSearchMCP/build/index.js"],
"enabled": true
}
}
}Cline / Roo Code
Cline CLI (npm) — or use harness install cline, writes to ~/.cline/data/settings/cline_mcp_settings.json:
cline mcp install truesearch --yes -- node D:\TrueSearchMCP\build\index.jsOr paste into ~/.cline/data/settings/cline_mcp_settings.json:
{
"mcpServers": {
"truesearch": {
"transport": { "type": "stdio", "command": "node", "args": ["D:\\TrueSearchMCP\\build\\index.js"] }
}
}
}VS Code extension: Cline extension → MCP Servers → Add New MCP Server:
{
"mcpServers": {
"truesearch": {
"command": "node",
"args": ["D:\\TrueSearchMCP\\build\\index.js"],
"type": "stdio"
}
}
}Cursor
~/.cursor/mcp.json (or Settings → MCP → Add new global MCP server):
{
"mcpServers": {
"truesearch": {
"command": "node",
"args": ["D:\\TrueSearchMCP\\build\\index.js"]
}
}
}Goose
~/.config/goose/config.yaml:
mcp_servers:
truesearch:
command: node
args: ["D:/TrueSearchMCP/build/index.js"]Zed
~/.config/zed/settings.json:
{
"context_servers": {
"truesearch": {
"command": "node",
"args": ["D:\\TrueSearchMCP\\build\\index.js"]
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"truesearch": {
"command": "node",
"args": ["D:\\TrueSearchMCP\\build\\index.js"]
}
}
}Global install (experimental)
Recommended: extract TrueSearchMCP-1.0.0.zip and run .\install.bat (see Release build above).
Alternative via npm tarball:
npm run release # produces truesearch-mcp-1.0.0.tgz
npm install -g ./truesearch-mcp-1.0.0.tgz
truesearch # interactive menu
truesearch-mcp # MCP server on stdio(npm install -g truesearch-mcp will work once the package is published to npm — not yet.)
Every harness row above is unstable/experimental when paired with this server — HTML scraping is inherently brittle and breaks when Google/YouTube change their markup.
Usage
Interactive menu
npm startArrow keys / j k to navigate, Enter to select, 1-9 hotkeys, Esc/q to go back.
CLI
npm run search -- "query" --browser stored
node build/cli.js yt search "rust tutorial"
node build/cli.js yt video "dQw4w9WgXcQ"
node build/cli.js yt comments "dQw4w9WgXcQ"
node build/cli.js config health
node build/cli.js harness list # auto-detect installed harnesses
node build/cli.js harness install <id> # install MCP into a harness
node build/cli.js harness uninstall <id> # remove MCP from a harness
node build/cli.js update # check for updates (GitHub / npm)Browser notes
Firefox — cookies read directly from
cookies.sqlite(plaintext). Works out of the box.Chrome ≤126 — cookies decrypted via Windows DPAPI + AES-256-GCM.
Chrome 127+ (App-Bound Encryption / v20) — cannot decrypt externally. Either:
Use Firefox or
storedcookies, orRestart Chrome with
--remote-debugging-port=9222(falls back to DevTools Protocol).
System proxy — auto-detected from Windows settings; override with
config proxy auto|off|URL.
Proxy
Reads Windows system proxy automatically (HKCU\...\Internet Settings\ProxyServer).
Default mode: auto. Change with:
npm run config -- proxy off
npm run config -- proxy http://127.0.0.1:7890License
MIT — see LICENSE.
This server cannot be deployed
Maintenance
Related MCP Connectors
Google, Bing, DuckDuckGo and Google Maps search results, free without an API key.
YouTube discovery, transcripts, library search, and monitors with API keys or OAuth.
Search YouTube and read video, channel and transcript data as JSON. No Google Cloud project.
Web search, browser automation, scraping, crawling and CAPTCHA solving for AI agents.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to perform real-time Google searches with anti-bot protection. Bypasses search engine restrictions using advanced browser automation to extract search results locally without requiring paid API services.6MIT
- AlicenseAqualityDmaintenanceEnables YouTube search, video details, channels, playlists, and comments scraping via MCP, no API key required.1012 npm1MIT
- AlicenseNot gradedqualityDmaintenanceEnables web searching using Google search results with no API keys required.16 npm1MIT
- AlicenseAqualityDmaintenanceEnables AI assistants to search YouTube, fetch transcripts, and get AI summaries of videos without API keys.35 npmMIT