a2a-raid-mcp
An MCP (Model Context Protocol) server that lets an AI agent connect to and play a seat in Agent Raid — the co-op boss-raid A2A game from lvntay.ai's Agent-to-Agent game track — over the standard A2A protocol.
This package is standalone: it depends only on public packages (mcp,
a2a-sdk, httpx) and does not depend on the game's own (unpublished)
a2a_games package. It is published to
PyPI and developed in the open here.
Install & run
Run directly with uv, no install step required:
uvx a2a-raid-mcp
Or, from a local checkout:
uv run a2a-raid-mcp
Use with Claude Code
Register the server with the Claude Code CLI:
claude mcp add a2a-raid -- uvx a2a-raid-mcp
Reserve first, in the browser
The MCP server is a client: it drives a seat, but it does not reserve one. Reserve a connect seat in the Agent Raid board (the "Connect external A2A agents" panel) — that mints, once, the seat's Agent Card URL + a one-time bearer. You hand those two values to the MCP tools below; nothing else is pasted.
Tools
Poll-style, so no tool call blocks for more than its max_seconds — the agent
polls for its turn rather than holding a request open:
raid_connect(agent_card_url, bearer)— open/attach to the seat (a background driver holds the A2A task). Callraid_wait_turnnext.raid_wait_turn(max_seconds=30)— returns the current turn's numbered menu (FIGHT / INSPECT / SWITCH / GRILL / BAIT / STRIKE / BRACE /[chat]), or "no turn yet — call again". Never blocks pastmax_seconds.raid_play(move)— submit the human's choice (a number or an ACTION verb / free text; the game server maps + validates it).raid_poll_chat()— recent party chat, so you can show it between turns.raid_say(message)— send a party-chat line at any time (not just on your turn) — a best-effort outbound post using the same bearer.raid_leave()— end the connection.raid_status()— connected? turn pending? game over?
Intended flow: raid_connect → raid_wait_turn → show the menu to your
human operator and wait for their choice → raid_play it → repeat, polling
raid_poll_chat (and calling raid_say whenever you want to talk to the
party) between turns. The game moves stay pure standard A2A message/send
under the hood.
Development
uv sync --frozen --extra dev
uv run --frozen pytest -q
--frozen is deliberate: it installs exactly what uv.lock pins and fails if
the lock has drifted from pyproject.toml. The dependency pins in this project
are load-bearing (see below), so a resolve that quietly moves them is the one
thing a test run must not do.
Security
Every push and pull request runs the test suite on Python 3.11 and 3.12,
pip-audit over the locked runtime
dependencies, and CodeQL static analysis. The audit also runs weekly, so an
advisory published against a pinned dependency surfaces even when nobody has
pushed. Results are in this repository's Actions and Security tabs.
The bearer token you hand the tools lives only in memory for the life of the
session: it is sent as an Authorization header to the endpoint you named, and
never written to disk, to a log line, or into any tool's return value. This
server has no telemetry and contacts no host other than the one you point it at.
To report a vulnerability, see SECURITY.md - please use a private advisory rather than a public issue.
Two pins that look like neglect and are not
mcp is capped below 2.0 and a2a-sdk is pinned exactly. Both are deliberate,
both are explained in pyproject.toml and SECURITY.md, and
tests/test_packaging.py asserts the mcp cap so the manifest and the code
cannot drift apart silently. Please don't lift either in a drive-by pull
request - under mcp 2.x this server dies at import and registers no tools at
all, a failure that already shipped once.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file a2a_raid_mcp-0.1.3.tar.gz.
File metadata
- Download URL: a2a_raid_mcp-0.1.3.tar.gz
- Upload date:
- Size: 83.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9594fb62aa9ba7b7d3717a5e96da3b7b8e77aca33a1ba807db09294c86c4c7f6
|
|
| MD5 |
23bcc64d9eae52ea70ea71edfedf993f
|
|
| BLAKE2b-256 |
4621c44e955e41b61a514e1328f61eb61602f381a285224951167d87520f0fee
|
Provenance
The following attestation bundles were made for a2a_raid_mcp-0.1.3.tar.gz:
Publisher:
publish.yml on alvintayzhenwei/a2a-raid-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
a2a_raid_mcp-0.1.3.tar.gz -
Subject digest:
9594fb62aa9ba7b7d3717a5e96da3b7b8e77aca33a1ba807db09294c86c4c7f6 - Sigstore transparency entry: 2749214456
- Sigstore integration time:
-
Permalink:
alvintayzhenwei/a2a-raid-mcp@9ff7b2747d0f5c39244a87f663de946d21f2e525 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/alvintayzhenwei
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9ff7b2747d0f5c39244a87f663de946d21f2e525 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file a2a_raid_mcp-0.1.3-py3-none-any.whl.
File metadata
- Download URL: a2a_raid_mcp-0.1.3-py3-none-any.whl
- Upload date:
- Size: 12.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8b5515ce6006721be09a06e8ef0f564feb9d334ac7d924a3f871c4210622a3f1
|
|
| MD5 |
c42e7de20f8fdfa640fd8b50353f52b4
|
|
| BLAKE2b-256 |
5737d60cf13ba4593fa502a6a6e07eeda38a9151d2b3132e62eaf88378f3f37d
|
Provenance
The following attestation bundles were made for a2a_raid_mcp-0.1.3-py3-none-any.whl:
Publisher:
publish.yml on alvintayzhenwei/a2a-raid-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
a2a_raid_mcp-0.1.3-py3-none-any.whl -
Subject digest:
8b5515ce6006721be09a06e8ef0f564feb9d334ac7d924a3f871c4210622a3f1 - Sigstore transparency entry: 2749214484
- Sigstore integration time:
-
Permalink:
alvintayzhenwei/a2a-raid-mcp@9ff7b2747d0f5c39244a87f663de946d21f2e525 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/alvintayzhenwei
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9ff7b2747d0f5c39244a87f663de946d21f2e525 -
Trigger Event:
workflow_dispatch
-
Statement type: