Yutori MCP
OfficialYutori MCP is a web intelligence server enabling continuous web monitoring, deep research, and browser automation.
š Scout (Continuous Web Monitoring)
create_scoutā Set up a continuous monitoring scout to track web changes for a given query, with options for webhooks, email alerts, scheduling, and custom output fieldslist_scoutsā List all scouts with pagination and status filtering (active, paused, done)get_scout_detailā Retrieve full details about a specific scoutget_scout_updatesā Fetch paginated reports/findings from a scout's runsedit_scoutā Update a scout's query, schedule, webhook config, or status (pause, resume, archive)delete_scoutā Permanently delete a scout and all its data
š¬ Research (Deep Web Research)
run_research_taskā Launch a one-time deep web research task that searches, reads, and synthesizes information; returns a task ID for pollinglist_research_tasksā List all research tasks with pagination and status filteringget_research_task_resultā Poll for a research task's status and results
š Browsing (Browser Automation)
run_browsing_taskā Execute a one-time AI-driven browser automation task from a given URL (supports cloud or local browser, configurable steps, webhooks, and auth)list_browsing_tasksā List all browsing tasks with pagination and status filteringget_browsing_task_resultā Poll for a browsing task's status and results
š API Usage
list_api_usageā View API usage statistics including active scout counts, rate limits, and activity metrics for a given time period (24h, 7d, 30d, 90d)
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., "@Yutori MCPresearch the latest trends in AI coding assistants"
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.
Yutori MCP
MCP tools and skills for web monitoring, deep research, and browser automation ā powered by Yutori's web agentic tech.
You can use it with Claude Code, Codex, Cursor, VS Code, ChatGPT, OpenClaw, and other MCP hosts.
Features
Capabilities:
Scouting ā Monitor the web continuously for anything you care about at a desired frequency
Research ā Run one-time deep web research tasks
Browsing ā Automate websites with an AI navigator
Workflow skills (for clients that support slash commands):
/yutori-scoutā Set up continuous web monitoring/yutori-researchā Deep web research (async, 5ā10 min)/yutori-browseā Browser automation/yutori-competitor-watchā Competitor monitoring template/yutori-api-monitorā API/changelog monitoring template
Related MCP server: hanzi-browse
Installation
If you don't already have uv installed, install it (it includes uvx):
curl -LsSf https://astral.sh/uv/install.sh | shOr with Homebrew:
brew install uvPython 3.10 or higher is required (uv manages this automatically for most installs).
For the quickstart below, Node.js is also required (for npx).
AI agent install (recommended)
Paste this into Claude Code, Codex, Cursor, Windsurf, or another coding agent:
Use https://yutori.com/api/llms.txt and set up Yutori for me.Manual quick install

Run in terminal:
uvx yutori-mcp loginThis will open Yutori Platform in your browser and save your API key locally.
Go to (https://platform.yutori.com) and add your key to the config file:
mkdir -p ~/.yutori cat > ~/.yutori/config.json << 'EOF' {"api_key": "yt-your-api-key"} EOFInstall MCP using add-mcp (requires Node.js):
npx add-mcp "uvx yutori-mcp"Pick the clients you want to configure.
Install workflow skills using skills.sh (requires Node.js):
npx skills add yutori-ai/yutori-mcp -gAdds slash-command shortcuts like
/yutori-scout,/yutori-research, and more.-ginstalls them at user scope. Omit-gif you want a project-local install instead.npx skills ls -g npx skills remove -g yutori-loginRestart the tool you are using.
Manual per-client install
Plugin (Recommended) - Includes MCP tools + workflow skills
Type these commands in Claude Code's input (not in a terminal):
/plugin marketplace add yutori-ai/yutori-mcp /plugin install yutori@yutori-pluginsThis installs both the MCP tools and workflow skills:
Skill
Description
/yutori-scoutSet up continuous web monitoring with comprehensive queries
/yutori-researchDeep web research workflow (async, 5-10 min)
/yutori-browseBrowser automation tasks
/yutori-competitor-watchQuick competitor monitoring template
/yutori-api-monitorAPI/changelog monitoring template
Already have the MCP server installed? Remove it first to avoid duplicate configurations:
claude mcp remove yutori -s user # if installed at user scope claude mcp remove yutori -s local # if installed at local/project scopeTo uninstall the plugin later:
/plugin uninstall yutori@yutori-plugins -s userMCP Only (if you prefer not to use the plugin)
claude mcp add --scope user yutori -- uvx yutori-mcpThe server reads your API key from
~/.yutori/config.json(set up viauvx yutori-mcp login).
Add to your claude_desktop_config.json:
{
"mcpServers": {
"yutori": {
"command": "uvx",
"args": ["yutori-mcp"]
}
}
}The server reads your API key from ~/.yutori/config.json.
For setup details, see the Claude Desktop MCP install guide.
Click the button to install:
Or install manually:
Go to Cursor Settings ā MCP ā Add new MCP Server, then add:
{
"mcpServers": {
"yutori": {
"command": "uvx",
"args": ["yutori-mcp"]
}
}
}The server reads your API key from ~/.yutori/config.json.
See the Cursor MCP guide for setup details.
Click the button to install:
Or install manually:
code --add-mcp '{"name":"yutori","command":"uvx","args":["yutori-mcp"]}'The server reads your API key from ~/.yutori/config.json.
Open ChatGPT Desktop and go to Settings -> Connectors -> MCP Servers -> Add server.
{
"mcpServers": {
"yutori": {
"command": "uvx",
"args": ["yutori-mcp"]
}
}
}The server reads your API key from ~/.yutori/config.json.
For setup details, see the OpenAI MCP guide.
MCP Server:
codex mcp add yutori -- uvx yutori-mcpOr add to
~/.codex/config.toml:[mcp_servers.yutori] command = "uvx" args = ["yutori-mcp"]The server reads your API key from
~/.yutori/config.json.Skills (optional, for workflow guidance):
Install skills using
$skill-installerinside Codex:$skill-installer install https://github.com/yutori-ai/yutori-mcp/tree/main/.agents/skills/yutori-scout $skill-installer install https://github.com/yutori-ai/yutori-mcp/tree/main/.agents/skills/yutori-research $skill-installer install https://github.com/yutori-ai/yutori-mcp/tree/main/.agents/skills/yutori-browse $skill-installer install https://github.com/yutori-ai/yutori-mcp/tree/main/.agents/skills/yutori-competitor-watch $skill-installer install https://github.com/yutori-ai/yutori-mcp/tree/main/.agents/skills/yutori-api-monitorOr manually copy skills to your user directory (use
-Lso symlinks are dereferenced and real files are copied):git clone https://github.com/yutori-ai/yutori-mcp /tmp/yutori-mcp cp -rL /tmp/yutori-mcp/.agents/skills/* ~/.agents/skills/To uninstall manually copied skills, delete the matching directories from
~/.agents/skills/. When updating this way, remove old Yutori skill directories first, sincecp -rLwill not delete renamed or removed skills.Restart Codex after installing skills.
Skill
Command
Description
Scout
$yutori-scoutSet up continuous web monitoring
Research
$yutori-researchDeep web research (async, 5-10 min)
Browse
$yutori-browseBrowser automation with AI navigator
Competitor Watch
$yutori-competitor-watchQuick competitor monitoring template
API Monitor
$yutori-api-monitorAPI/changelog monitoring template
See the Codex Skills docs for more on skills.
Follow the Quickstart above:
Install skills and MCP for OpenClaw (and optionally other tools) via skills.sh:
npx skills add yutori-ai/yutori-mcpWhen prompted, choose which Yutori skills to install and select OpenClaw as the tool.
Add to ~/.gemini/settings.json. If you already have mcp or mcpServers, merge these keys into your existing config:
{
"mcp": {
"allowed": ["yutori"]
},
"mcpServers": {
"yutori": {
"command": "uvx",
"args": ["yutori-mcp"]
}
}
}The server reads your API key from ~/.yutori/config.json.
Add "yutori" to mcp.allowed if you already list other MCPs there. For more details, see the Gemini CLI MCP settings guide.
Install the package to run the MCP server (e.g. for custom or self-hosted setups):
pip install yutori-mcpTools
See TOOLS.md for the full tool reference ā Scout, Research, and Browsing tools with parameters, examples, and response formats.
Development
Setup
git clone https://github.com/yutori-ai/yutori-mcp
cd yutori-mcp
pip install -e ".[dev]"Testing
pytestRunning locally
yutori-mcp login # authenticate (one-time)
yutori-mcp # run the server (or: python -m yutori_mcp.server)Targeting the dev environment
The server hits the production API (https://api.yutori.com/v1) by default.
For testing, point it at the dev stack (https://api.dev.yutori.com/v1) with
the --env flag or the YUTORI_ENV environment variable (the flag wins if
both are set):
yutori-mcp --env devOr in an MCP client config:
{
"mcpServers": {
"yutori-dev": {
"command": "uvx",
"args": ["yutori-mcp", "--env", "dev"]
}
}
}Setting "env": {"YUTORI_ENV": "dev"} in the server config works too. An
unknown environment name fails at startup rather than silently falling back
to production. Note that the login/logout/status auth subcommands
always talk to production; use a YUTORI_API_KEY valid for dev when
targeting it.
Debugging with MCP Inspector
npx @modelcontextprotocol/inspector yutori-mcpAPI Documentation
For full API documentation, visit docs.yutori.com.
License
Apache 2.0
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityBmaintenanceAn MCP server that provides autonomous, multi-source web research capabilities for AI agents. It delivers comprehensive, validated information through deep research tools while maintaining security and compatibility with various LLM providers.Last updatedMIT
- Alicense-qualityDmaintenanceMCP server providing browser automation for AI agents with context-aware playbooks and skills for complex websites.Last updated36168PolyForm Noncommercial 1.0.0

@meshbrow/mcp-serverofficial
Alicense-qualityAmaintenanceMCP server for Meshbrow that gives AI agents full browser automation capabilities with stealth anti-detection, enabling natural language control of browser sessions, data extraction, and multi-browser fleets.Last updatedMIT- Alicense-qualityDmaintenanceMCP tool server that gives any AI agent the ability to search, scrape, and analyze content across the internet.Last updated42MIT
Related MCP Connectors
MCP server connecting AI agents to non-custodial staking data across 130+ networks.
A paid remote MCP for AI agent browser approval MCP, built to return verdicts, receipts, usage logs,
A paid remote MCP for AI agent browser MCP session, built to return verdicts, receipts, usage logs,
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/yutori-ai/yutori-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server