Skip to main content
ClaudeWave
BK927 avatar
BK927

overwatch-aio

View on GitHub

Overwatch MCP server and standalone agent skill for hero meta, player stats, replays, patch notes and OWCS Korea.

MCP ServersOfficial Registry0 stars0 forksPythonUpdated today
ClaudeWave Trust Score
70/100
· OK
Passed
  • Actively maintained (<30d)
  • Clear description
  • Topics declared
  • Documented (README)
Flags
  • !No standard license detected
Last scanned: 9/10/2026
Install in Claude Code / Claude Desktop
Method: NPX · skills
Claude Code CLI
claude mcp add overwatch-aio -- npx -y skills
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "overwatch-aio": {
      "command": "npx",
      "args": ["-y", "skills"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
Use cases

MCP Servers overview

# Overwatch AIO — MCP Server & Agent Skill

**English** | [한국어](README.ko.md)

An **Overwatch MCP server and standalone agent skill** for hero meta, public player statistics, evidenced rankers, replay codes, official patch notes, and OWCS Korea esports data. Both interfaces share ten queries, validation, and a SQLite store. Results preserve source URLs, observation dates, applied filters, and evidence.

Built with **Python 3.11+ and uv**. Choose the skill, MCP, or both. Data is fetched on request; no scheduled collector is started.

[Download releases](https://github.com/BK927/overwatch-aio/releases) · [Distribution and registry guide](docs/distribution.md)

## Choose an interface

| Interface | Use it for | Installation |
|---|---|---|
| Agent skill | Let Codex select queries and interpret evidence | Root skill and basic Python dependencies |
| MCP server | Call `ow_*` tools from an MCP client | The `mcp` extra and a client registration |
| Both | Choose the interface for each environment | Both installations can share one DB |

The skill runs its CLI independently. MCP does not require a skill installation. There is no automatic switching or duplicate execution.

## Install the skill

Use the [skills CLI](https://github.com/vercel-labs/skills) for a project installation:

```text
npx skills add BK927/overwatch-aio --skill overwatch-aio-skill --agent codex
```

Add `--global` for a personal installation. Python and `uv` are needed for queries; Node.js is only needed for this installer. Use the skill directory reported by the installer.

Alternatively, ask Codex's Skill Installer:

> Install the skill at the root of BK927/overwatch-aio as overwatch-aio-skill. Use the specified commit if I provide one.

For a pinned installation, use its script with your local Codex skills path:

```text
python <Codex skills>/.system/skill-installer/scripts/install-skill-from-github.py --repo BK927/overwatch-aio --path . --name overwatch-aio-skill --ref <commit-SHA>
uv sync --frozen --no-dev --project "<installed-skill-directory>"
```

The Skill Installer's default personal directory is `~/.codex/skills/overwatch-aio-skill`. Invoke `$overwatch-aio-skill` or ask an Overwatch data question. Your database, caches, and development environment are not distributed.

Example requests:

- “Compare Reinhardt and Ramattra in Asia Master, with sources and the actual data period.”
- “Show Korea-specific data if available, and distinguish it from Asia data.”
- “Find Reinhardt replays linked to evidenced Korean players and show their playback verification.”
- “Explain Reinhardt's latest patch changes alongside OWCS Korea data.”

## Install the MCP server

MCPB-compatible clients supporting the UV runtime (manifest 0.4) can install the `.mcpb` file from a GitHub release. Dependencies are prepared at first launch. The source installation below works with clients using ordinary stdio or Streamable HTTP configuration.

Clone the repository or use an installed skill directory. Replace `<project-directory>` with its absolute path:

```text
git clone https://github.com/BK927/overwatch-aio.git
uv sync --frozen --no-dev --extra mcp --project "<project-directory>"
uv run --frozen --no-dev --extra mcp --project "<project-directory>" overwatch-aio-mcp serve
```

The default transport is **stdio**. Use the [MCP JSON example](examples/mcp-client.json) or [Codex TOML example](examples/mcp-codex.toml). Codex also accepts:

```text
codex mcp add overwatch-aio -- uv run --frozen --no-dev --extra mcp --project "<project-directory>" overwatch-aio-mcp serve
```

For **Streamable HTTP**, start the server and connect to `http://127.0.0.1:8765/mcp`:

```text
uv run --frozen --no-dev --extra mcp --project "<project-directory>" overwatch-aio-mcp serve --transport streamable-http
```

`--host` and `--port` change the listen address. The default is local-only `127.0.0.1:8765`. The server has no built-in authentication; public hosting requires separate authentication and TLS. See the [official Codex MCP guide](https://learn.chatgpt.com/docs/extend/mcp?surface=cli) for client configuration.

Keep `--extra mcp` in MCP launch commands and in `uv sync` commands for environments used by MCP. A plain `uv sync` can remove optional dependencies. The skill command stays unchanged.

## Available tools

| Tool | Capability |
|---|---|
| `ow_catalog` | Heroes, maps, modes, tiers, regions, and supported filters |
| `ow_meta` | Hero rates, map/tier/region comparisons, and stored observations |
| `ow_players_search` | Public name and BattleTag search |
| `ow_player_get` | Public profile and career/hero/role statistics |
| `ow_rankers_search` | Locally curated, evidenced ranker registry |
| `ow_replays_search` | Public replay discovery and stored evidence filters |
| `ow_replay_get` | Replay details and recorded playback evidence |
| `ow_patches` | Official patch notes and replay compatibility notices |
| `ow_esports` | OWCS Korea hero, match, map, ban, and team data |
| `ow_status` | Source health and stored coverage; offline by default |

Both interfaces publish the same [input/output schemas](docs/query-schemas.json). MCP returns the result as `structuredContent` and JSON text. Only `status=error` sets `isError=true`; empty, stale, and partial results retain their quality status and warnings. `overwatch-aio-mcp schema` exports the contracts. Use the [local curation CLI](docs/curation.md) for evidence writes.

## Direct CLI queries

```text
uv run --frozen --no-dev --project "<skill-directory>" overwatch-aio-skill query ow_status
uv run --frozen --no-dev --project "<skill-directory>" overwatch-aio-skill query ow_meta --input-file "<filters.json>"
uv run --frozen --no-dev --project "<skill-directory>" overwatch-aio-skill schema
```

Example `filters.json`:

```json
{"heroes":["reinhardt","ramattra"],"region":"ASIA","tier":"MASTER"}
```

Omitting the file supplies `{}`; `--input-file -` reads stdin. UTF-8 and UTF-8 BOM are supported. Stdout contains one JSON object; diagnostics go to stderr. Exit codes are `0` for ok/empty/stale/partial, `1` for execution failure, and `2` for invalid input. Inspect `status` and warnings. The [query guide](references/queries.md) provides more examples in Korean.

## Data storage and compatibility

DB selection is **`--db` → `OW_DB_PATH` → `~/.overwatch-aio-skill/overwatch.db`**. The default is shared by processes running as the same user, independently of installation directories. Use absolute paths for existing records. Place `--db` after the executable name, before `query` or `serve`.

Existing caches, meta observations, players, replays, and manual evidence remain readable. SQLite WAL and transactions support concurrent skill writes and MCP reads. The old `collection_jobs` table is preserved but unused. There is no automatic database move or deletion. History contains observations made on request; unobserved periods are not backfilled. Cached responses do not create new observations. Replay recheck flags from invalidation notices update when patches are queried. HTTP cache retention is bounded to 256 entries, 64 MiB, and seven days.

The repository is `BK927/overwatch-aio`; the Python distribution and skill remain `overwatch-aio-skill`. Existing skill commands work unchanged. Older MCP users can keep `overwatch-aio-mcp serve` after updating their path and adding `--extra mcp`. Point `--db` at the old `data/overwatch.db` explicitly if needed.

## Sources and limits

Sources include **OverFast, Blizzard hero statistics and patch notes, OWTICS, OWReplays, and OWCS Korea releases**. Requests to these services can include query filters and public player identifiers needed for the selected operation.

- ASIA does not establish a Korean match server. OWTICS KOREA is a provider grouping.
- Rankers cover the evidenced local registry, not a complete live Top 500 list.
- Public replay codes do not prove playability. Playback evidence is recorded by an operator; the game client is not controlled.
- Private profiles are not accessed. Missing statistics and explicit privacy are distinguished.
- Hero rates use percentages from 0–100. No invented matchup win rates. Esports metrics stay separate from ranked statistics.
- Source changes, rate limits, and parsing failures remain visible. Public refreshes do not overwrite manual identity or playback evidence.

## Development and verification

```text
uv sync --locked --extra dev
uv run --frozen --extra dev ruff check src tests scripts
uv run --frozen --extra dev ruff format --check src tests scripts
uv run --frozen --extra dev python scripts/validate_skill.py
uv run --frozen --extra dev pytest -q
uv sync --locked --extra dev --extra mcp
uv run --frozen --extra dev --extra mcp pytest -q
uv build
```

CI covers Windows/Linux × Python 3.11/3.13 × skill-only/MCP installations. It checks dependency isolation, shared contracts, real stdio/HTTP connections and shutdown, and shared DB access. Live upstream checks are separate and opt-in:

```text
uv run --frozen --no-dev python scripts/live_smoke.py --output docs/live-verification.json
```

[Implementation specification](SPEC.md) · [Verification record](docs/verification.md) · [Source contracts](research/source-contracts.md) · [SQLite schema](src/overwatch_skill/db/schema.sql)
agent-skillscodexmcpmcp-servermodel-context-protocoloverwatchpython

What people ask about overwatch-aio

What is BK927/overwatch-aio?

+

BK927/overwatch-aio is mcp servers for the Claude AI ecosystem. Overwatch MCP server and standalone agent skill for hero meta, player stats, replays, patch notes and OWCS Korea. It has 0 GitHub stars and its last recorded update is dated 2026-09-09.

How do I install overwatch-aio?

+

You can install overwatch-aio by cloning the repository (https://github.com/BK927/overwatch-aio) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is BK927/overwatch-aio safe to use?

+

Our security agent has analyzed BK927/overwatch-aio and assigned a Trust Score of 70/100 (tier: OK). See the full breakdown of passed checks and flags on this page.

Who maintains BK927/overwatch-aio?

+

BK927/overwatch-aio is maintained by BK927. The last recorded GitHub activity is dated 2026-09-09, with 0 open issues.

Are there alternatives to overwatch-aio?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy overwatch-aio to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: BK927/overwatch-aio
[![Featured on ClaudeWave](https://claudewave.com/api/badge/bk927-overwatch-aio)](https://claudewave.com/repo/bk927-overwatch-aio)
<a href="https://claudewave.com/repo/bk927-overwatch-aio"><img src="https://claudewave.com/api/badge/bk927-overwatch-aio" alt="Featured on ClaudeWave: BK927/overwatch-aio" width="320" height="64" /></a>

More MCP Servers

overwatch-aio alternatives