anima-use-google
Allows AI agents to run Google AI Mode searches using the user's own logged-in browser session, returning synthesized answers and citations.
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., "@anima-use-googlesearch for the latest breakthroughs in quantum computing"
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.
anima-use-google
MCP server + browser sidecar extension that lets AI agents run Google AI Mode searches using your own logged-in browser session, then return the synthesized answer and citations as an MCP tool result.
No headless browser, no stealth tricks, no CAPTCHA fighting. Your real browser profile does the work.
Quickest path (5 minutes)
You need three things: the MCP server, the native-messaging host, and either the Firefox or Chromium extension. Then wire the server into your agent.
1. Wire the MCP server into your agent
Claude Code:
claude mcp add google-ai-search -- npx anima-use-googleOther agents - add to your MCP config:
{
"mcpServers": {
"google-ai-search": {
"command": "npx",
"args": ["anima-use-google"]
}
}
}If you do not want your agent to follow npm's moving latest tag, pin the MCP
server to a GitHub commit instead:
claude mcp add google-ai-search -- npm exec --yes --package github:animaios/anima-use-google#<commit-sha> -- anima-use-googleEquivalent MCP config:
{
"mcpServers": {
"google-ai-search": {
"command": "npm",
"args": [
"exec",
"--yes",
"--package",
"github:animaios/anima-use-google#<commit-sha>",
"--",
"anima-use-google"
]
}
}
}Use a full commit SHA for reproducibility. GitHub installs run the package's
prepare script, so the TypeScript server is built from source before npm runs
the anima-use-google bin.
The MCP server talks to the sidecar over localhost; it does not bundle a browser.
2. Set up a browser sidecar (one-time, non-npm)
The npm tarball ships everything you need. After the first npx anima-use-google, the files live in ~/.npm/_npx/<hash>/node_modules/anima-use-google/ - easiest to clone:
git clone https://github.com/animaios/anima-use-google
cd anima-use-googleFirefox
Register the native-messaging host:
node native-host/install-host.cjsThis writes the Firefox native-host registration for your OS:
Linux:
~/.mozilla/native-messaging-hosts/com.google.ai.search.jsonmacOS:
~/Library/Application Support/Mozilla/NativeMessagingHosts/com.google.ai.search.jsonWindows:
HKCU\Software\Mozilla\NativeMessagingHosts\com.google.ai.search, pointing at%USERPROFILE%\.anima-use-google\com.google.ai.search.json
Load the extension in Firefox:
Open
about:debugging#/runtime/this-firefox.Click Load Temporary Add-on and pick
extension/manifest.json.The host process starts on the first search.
Restart Firefox so the new native-messaging host is picked up.
For permanent install (loads on every FF start):
npx web-ext build --source-dir extension --overwrite-dest
# Then sign or load via about:config xpinstall.signatures.required=false (Dev/Nightly)Chrome / Chromium / Brave
Chromium-based browsers use the extension-chromium/ sidecar. Their native
messaging manifests require allowed_origins, so you need the extension id
before installing the native host.
Load the unpacked extension:
Chrome: open
chrome://extensions.Chromium: open
chromium://extensions.Brave: open
brave://extensions.Enable Developer mode.
Click Load unpacked and choose
extension-chromium/.Copy the generated extension id.
Register the native-messaging host:
# Google Chrome node native-host/install-chrome-host.cjs --browser chrome --extension-id <extension-id> # Chromium node native-host/install-chrome-host.cjs --browser chromium --extension-id <extension-id> # Brave node native-host/install-chrome-host.cjs --browser brave --extension-id <extension-id>The installer writes the manifest or registry entry for your selected browser:
Chrome on Linux:
~/.config/google-chrome/NativeMessagingHosts/com.google.ai.search.jsonChrome on macOS:
~/Library/Application Support/Google/Chrome/NativeMessagingHosts/com.google.ai.search.jsonChrome on Windows:
HKCU\Software\Google\Chrome\NativeMessagingHosts\com.google.ai.searchChromium on Linux:
~/.config/chromium/NativeMessagingHosts/com.google.ai.search.jsonChromium on macOS:
~/Library/Application Support/Chromium/NativeMessagingHosts/com.google.ai.search.jsonChromium on Windows:
HKCU\Software\Chromium\NativeMessagingHosts\com.google.ai.searchBrave on Linux:
~/.config/BraveSoftware/Brave-Browser/NativeMessagingHosts/com.google.ai.search.jsonBrave on macOS:
~/Library/Application Support/BraveSoftware/Brave-Browser/NativeMessagingHosts/com.google.ai.search.jsonBrave on Windows:
HKCU\Software\BraveSoftware\Brave-Browser\NativeMessagingHosts\com.google.ai.search
On Windows, the manifest JSON itself is written under
%USERPROFILE%\.anima-use-google\<browser>\com.google.ai.search.json, and the registry key points the browser at that file.Reload the extension so
chrome.runtime.connectNative("com.google.ai.search")sees the manifest.
Switching between Firefox and Chromium-based sidecars
The MCP server always connects to the first browser native host listening on
127.0.0.1:51784. When switching browsers during development, make sure the
old sidecar is not still owning that port.
Disable or unload the sidecar you are not testing:
Firefox: remove or disable the temporary add-on from
about:debugging#/runtime/this-firefox.Chrome/Chromium/Brave: disable or remove the unpacked extension from
chrome://extensions,chromium://extensions, orbrave://extensions.
Stop any stale native host:
ps -ef | rg '[n]ative-host/host\.js' kill <pid>Register the host manifest for the browser you want:
# Firefox node native-host/install-host.cjs # Google Chrome node native-host/install-chrome-host.cjs --browser chrome --extension-id <chrome-extension-id> # Chromium node native-host/install-chrome-host.cjs --browser chromium --extension-id <chrome-extension-id> # Brave node native-host/install-chrome-host.cjs --browser brave --extension-id <brave-extension-id>Reload the chosen browser extension so it reconnects to native messaging.
Confirm which browser owns the host before running an E2E test:
ps -ef | rg '[n]ative-host/host\.js|[b]rave|[c]hrome|[c]hromium|[f]irefox' ss -ltnp 'sport = :51784'For Chromium-based browsers, the host command should include an origin like
chrome-extension://<extension-id>/. For Firefox, it is normally launched without that Chrome extension-origin argument.
3. Use it
Ask your agent normally:
Search Google AI Mode for: Next.js 15 App Router best practices
The agent calls search_google_ai, your browser sidecar opens the udm=50 search in your profile, the extension parses the AI answer with inline [1][2] citations, and the agent gets a grounded markdown response.
Related MCP server: Google Research MCP
How it works
Agent (stdio) <---> MCP server <---> localhost TCP <---> host.js
<---> browser native port <---> background script
<---> opens google.com/search?udm=50&q=...
<---> content.js parses AI answer + sources
<---> response back along the same chainYour logged-in Google cookies are reused because the tab is opened in your own browser profile - if you have AI Mode enabled, it works; CAPTCHAs don't trigger (real user profile, no stealth games).
The multilanguage completion detection (SVG thumbs-up → aria-label → text markers → 40s fallback) and SERPO-style citation parsing are ported from the Battle-tested google-ai-mode-mcp.
Developers
Want to hack on the MCP server or build from source:
npm install
npm run build # tsc -> dist/
npm test # node:test regression suite
npm link # then `anima-use-google` on PATHProject layout:
src/+dist/- TypeScript MCP server publishing asanima-use-google.native-host/-host.jsbridges browser native messaging <-> localhost TCP;install-host.cjswrites the Firefox manifest;install-chrome-host.cjswrites the Chrome/Chromium/Brave manifest.extension/- Firefox MV3 sidecar.extension-chromium/- Chrome/Chromium/Brave MV3 sidecar using a service worker background.Selector constants live in each extension's
src/selectors.js- update both if Google's AI Mode DOM shifts.
Tuning
Cutoff markers (end-of-answer disclaimers, language-aware) and citation selectors are in extension/src/selectors.js and extension-chromium/src/selectors.js. If extraction fails on your locale, add your language's markers there.
License
unLICENSE. See LICENSE.
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.
Latest Blog Posts
- 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/animaios/anima-use-google'
If you have feedback or need assistance with the MCP directory API, please join our Discord server