Skip to main content

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
  • Computer use preview — On macOS 15+, opt in to foreground desktop automation against the dev endpoint

macOS computer-use preview

This development-only preview is available only when the MCP server runs on macOS with YUTORI_ENV=dev. The runtime is Python-only and requires Python 3.10 or later. Setup installs CuaDriver, requests its macOS permissions, and prepares the optional native reasoning overlay:

uvx yutori-mcp computer-use setup
uvx yutori-mcp computer-use doctor
uvx yutori-mcp computer-use smoke

computer-use run executes one custom task from the terminal — the same run the MCP tool performs, with per-action progress printed as it happens:

uvx yutori-mcp computer-use run "In Calculator, compute 17 * 23 and report the result." --app Calculator

The run_computer_use_task tool controls the visible foreground desktop. Do not touch the Mac while it runs. Visible desktop content is sent to Yutori's dev model endpoint. Only one task can control a Mac at a time.

Workflow skills (for clients that support slash commands):

Installation

Requirements

If you don't already have uv installed, install it (it includes uvx):

curl -LsSf https://astral.sh/uv/install.sh | sh

Or with Homebrew:

brew install uv

Python 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

MCP server installation

  1. Run in terminal:

    uvx yutori-mcp login
    

    This will open Yutori Platform in your browser and save your API key locally.

    Or, manually add your API key

    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"}
    EOF
    
  2. Install MCP using add-mcp (requires Node.js):

    npx add-mcp "uvx yutori-mcp"
    

    Pick the clients you want to configure.

  3. Install workflow skills using skills.sh (requires Node.js):

    npx skills add yutori-ai/yutori-mcp -g
    

    Adds slash-command shortcuts like /yutori-scout, /yutori-research, and more.

    -g installs them at user scope. Omit -g if you want a project-local install instead.

    To list or remove skills later:
    npx skills ls -g
    npx skills remove -g yutori-login
    
  4. Restart the tool you are using.

Manual per-client install

Claude Code
  1. 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-plugins
    

    This installs both the MCP tools and workflow skills:

    Skill Description
    /yutori-scout Set up continuous web monitoring with comprehensive queries
    /yutori-research Deep web research workflow (async, 5-10 min)
    /yutori-browse Browser automation tasks
    /yutori-competitor-watch Quick competitor monitoring template
    /yutori-api-monitor API/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 scope
    

    To uninstall the plugin later:

    /plugin uninstall yutori@yutori-plugins -s user
    
  2. MCP Only (if you prefer not to use the plugin)

    claude mcp add --scope user yutori -- uvx yutori-mcp
    

    The server reads your API key from ~/.yutori/config.json (set up via uvx yutori-mcp login).

Claude Desktop

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.

Cursor

Click the button to install:

Install in Cursor

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.

VS Code

Click the button to install:

Install in VS Code Install in VS Code Insiders

Or install manually:

code --add-mcp '{"name":"yutori","command":"uvx","args":["yutori-mcp"]}'

The server reads your API key from ~/.yutori/config.json.

ChatGPT

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.

Codex
  1. MCP Server:

    codex mcp add yutori -- uvx yutori-mcp
    

    Or add to ~/.codex/config.toml:

    [mcp_servers.yutori]
    command = "uvx"
    args = ["yutori-mcp"]
    

    The server reads your API key from ~/.yutori/config.json.

  2. Skills (optional, for workflow guidance):

    Install skills using $skill-installer inside 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-monitor
    

    Or manually copy skills to your user directory (use -L so 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, since cp -rL will not delete renamed or removed skills.

    Restart Codex after installing skills.

    Skill Command Description
    Scout $yutori-scout Set up continuous web monitoring
    Research $yutori-research Deep web research (async, 5-10 min)
    Browse $yutori-browse Browser automation with AI navigator
    Competitor Watch $yutori-competitor-watch Quick competitor monitoring template
    API Monitor $yutori-api-monitor API/changelog monitoring template

    See the Codex Skills docs for more on skills.

OpenClaw

Follow the Quickstart above:

  1. Install skills and MCP for OpenClaw (and optionally other tools) via skills.sh:
    npx skills add yutori-ai/yutori-mcp
    
    When prompted, choose which Yutori skills to install and select OpenClaw as the tool.
Gemini CLI

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.

Run with pip

Install the package to run the MCP server (e.g. for custom or self-hosted setups):

pip install yutori-mcp

Tools

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

pytest

Running 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 dev

Or 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. Plain login/logout/status commands manage production; pass --env dev to manage the separately stored dev credential described below. YUTORI_API_KEY overrides either stored credential when set.

Debugging with MCP Inspector

npx @modelcontextprotocol/inspector yutori-mcp

API Documentation

For full API documentation, visit docs.yutori.com.

License

Apache 2.0

Computer-use preview: authenticating against dev

login authenticates against production and saves a production key, which the dev stack rejects with a 401. Store a dev key separately:

uvx yutori-mcp --env dev login      # prompts for a key from platform.dev.yutori.com
uvx yutori-mcp --env dev status
uvx yutori-mcp --env dev logout

That writes an environments.dev entry alongside the existing top-level api_key, so one machine can hold both without either shadowing the other. YUTORI_API_KEY still takes precedence over both when set.

Computer-use preview: runtime dependency

The SDK-owned yutori.navigator.N2ComputerAgent and MacOSComputer provide the complete runtime. The MCP package pins SDK 0.9.1 and verifies the installed files against the immutable published wheel plus its packaged provenance during computer-use doctor. There is no TypeScript bundle, Node executable, or alternate harness. A normal source checkout needs no private dependency access:

uv sync --extra dev

SDK contributors may deliberately test an editable 0.9.1 checkout by setting YUTORI_MCP_ALLOW_EDITABLE_SDK=1; without that explicit override, doctor rejects editable or modified SDK installations.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

yutori_mcp-0.5.0.tar.gz (6.0 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

yutori_mcp-0.5.0-py3-none-any.whl (69.4 kB view details)

Uploaded Python 3

File details

Details for the file yutori_mcp-0.5.0.tar.gz.

File metadata

  • Download URL: yutori_mcp-0.5.0.tar.gz
  • Upload date:
  • Size: 6.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.12.14

File hashes

Hashes for yutori_mcp-0.5.0.tar.gz
Algorithm Hash digest
SHA256 4bc65cdad8facf586251ac3ed472d7856bcaa4acd599d171e7105645c72b13bd
MD5 4e1d3b4053c4199475d548915b11cc0b
BLAKE2b-256 a9ca45b7a81b4d8832f1b7693fe3de4ecab34db8a6f1c902ad3f24755eecbd79

See more details on using hashes here.

File details

Details for the file yutori_mcp-0.5.0-py3-none-any.whl.

File metadata

  • Download URL: yutori_mcp-0.5.0-py3-none-any.whl
  • Upload date:
  • Size: 69.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.12.14

File hashes

Hashes for yutori_mcp-0.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 ce265cea2aedad5a03f3bda28dfb30488ffc520c603a977f4d49c91bf0d976a0
MD5 e2ab1a07b30ec9c0c355511f09d8a8f0
BLAKE2b-256 aceeb227f19f3215959cea08b9494155bd0e6857a226a4310b82ea7d2b32f3d2

See more details on using hashes here.

Release history Release notifications | RSS feed

0.5.12

2 files

0.5.11

2 files

0.5.9

2 files

0.5.8

2 files

0.5.7

2 files

0.5.6

2 files

0.5.5

2 files

0.5.4

2 files

0.5.3

2 files

0.5.2

2 files

0.5.1

2 files

This release

0.5.0 This release

2 files

0.3.1

2 files

0.3.0

2 files

0.2.9

2 files

0.2.8

2 files

0.2.7

2 files

0.2.6

2 files

0.2.5

2 files

0.2.4

2 files

0.2.3

2 files

0.2.2

2 files

0.2.1

2 files

0.2.0

2 files

0.1.7

2 files

0.1.6

2 files

0.1.5

2 files

0.1.4

2 files

0.1.3

2 files

0.1.2

2 files

0.1.1

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page