1. Conduid
  2. Automation
  3. Yutori MCP
MCP server · Automation

Yutori MCP

Yutori MCP

Unclaimed Apache-2.0 last commit 6 months ago agentic-workflowai-agentsbrowser-automationagentic-aiautomation
62Good

Scored 4 months ago · breakdown

About Yutori MCP

Yutori MCP is an MCP server published by yutori-ai in the Automation category: yutori MCP. It has been installed 0 times through Conduid.

The repository has 5 stars and 1 forks, with the last commit 6 months ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx yutori-mcp

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Yutori MCP

Powered by Claude · Grounded in docs

I know everything about Yutori MCP. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

README

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):

Installation

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).

Quick install (recommended)

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.

    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.

    npx skills ls -g
    npx skills remove -g yutori-login
    
  4. Restart the tool you are using.

Manual per-client setup

  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).

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.

  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.

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.

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-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)

Debugging with MCP Inspector

npx @modelcontextprotocol/inspector yutori-mcp

API Documentation

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

License

Apache 2.0

README mirrored from the source repository 4 months ago. The original is authoritative.

Questions

About Yutori MCP

How do I install Yutori MCP?

Run npx yutori-mcp, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Yutori MCP safe to use with an AI agent?

Its trust score is 62 out of 100 (good). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Yutori MCP still maintained?

The last commit was 6 months ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.