Top AI Repos — open-source AI, indexed and scored
Top AI Repos tracks AI repositories on GitHub and answers two different questions about each one: is it moving right now, and would you bet a product on it.
Top AI Repos tracks AI repositories on GitHub and answers two different questions about each one: is it moving right now, and would you bet a product on it.
Full agentic runs for Slay the Spire 2. A mod that exposes in-game state, and the MCP server for the mod.
| Date | Stars |
|---|---|
| 2026-07-31 | 454 |
| 2026-08-01 | 455 |
| 2026-08-11 | 463 |
| 2026-08-18 | 469 |
| 2026-08-20 | 472 |
| 2026-08-22 | 473 |
| 2026-08-24 | 474 |
| 2026-08-25 | 476 |
| 2026-08-27 | 477 |
| 2026-08-28 | 478 |
| 2026-08-29 | 481 |
| 2026-08-30 | 480 |
| 2026-08-31 | 481 |
| 2026-09-01 | 481 |
| 2026-09-03 | 482 |
| 2026-09-06 | 483 |
| 2026-09-07 | 484 |
| 2026-09-08 | 486 |
| 2026-09-09 | 487 |
| 2026-09-10 | 486 |
| 2026-09-12 | 487 |
| 2026-09-13 | 488 |
| 2026-09-14 | 487 |
| 2026-09-15 | 491 |
| 2026-09-16 | 492 |
| 2026-09-17 | 493 |
| 2026-09-18 | 494 |
| 2026-09-19 | 494 |
| 2026-09-20 | 496 |
Today
+2 stars today
This week
+8 stars this week
This month
+24 stars this month
Momentum
6.0
growth rate 1.64%/day
<p align="center">
<img src="docs/teaser.png" alt="STS2 MCP" width="90%" />
</p>
<p align="center"><em>An Experimental Research Project to Fully-Automate your Slay the Spire 2 Runs</em></p>
A mod for [**Slay the Spire 2**](https://store.steampowered.com/app/2868840/Slay_the_Spire_2/) that lets AI agents play the game. Exposes game state and actions via a localhost REST API, with an optional MCP server for Claude Desktop / Claude Code integration.
Singleplayer and multiplayer (co-op) supported, plus full menu and lobby control: profile switching, character select (SP and MP host/client) with optional seed, multiplayer host / Steam-friend join / FastMP localhost join, multiplayer load lobby for resuming saved co-op runs, game-over dismissal, FTUE/tutorial popup handling, and Timeline visibility. Tested against STS2 `v0.103.2`.
> [!warning]
> This mod allows external programs to read and control your game via a localhost API. Use at your own risk with runs you care less about.
> [!caution]
> Multiplayer support is in **beta** — expect bugs. Any multiplayer issues encountered with this mod installed are very likely caused by the mod, not the game. Please disable the mod and verify the issue persists before reporting bugs to the STS2 developers.
## For Players
### 1. Install the Mod
Grab the [latest release](https://github.com/Gennadiyev/STS2MCP/releases/latest) and follow the instructions:
1. Copy `STS2_MCP.dll` and `STS2_MCP.json` to `<game_install>/mods/`
2. Launch the game and enable mods in settings (a consent dialog appears on first launch)
3. The mod starts an HTTP server on `localhost:15526` automatically
> [!note]
> The release DLL is a platform-agnostic .NET assembly — the same `STS2_MCP.dll` and `STS2_MCP.json` work on Windows, Linux, and macOS. No separate builds are needed.
#### macOS install
On macOS, the mods directory lives inside the app bundle. The default Steam install path is:
```
~/Library/Application Support/Steam/steamapps/common/Slay the Spire 2/
SlayTheSpire2.app/Contents/MacOS/mods/
```
To install, right-click `SlayTheSpire2.app` → **Show Package Contents**, navigate to `Contents/MacOS/`, and create a `mods` folder. Or from the terminal:
```bash
GAME_DIR="$HOME/Library/Application Support/Steam/steamapps/common/Slay the Spire 2"
MODS_DIR="$GAME_DIR/SlayTheSpire2.app/Contents/MacOS/mods"
mkdir -p "$MODS_DIR"
cp STS2_MCP.dll "$MODS_DIR/"
cp STS2_MCP.json "$MODS_DIR/"
```
Launch the game and open **Settings → Mods**. The mod should appear in the list. A consent dialog appears on first launch — accept it to enable mod loading. Once enabled, verify the HTTP server is running:
```bash
curl -s http://localhost:15526/
```
A successful response looks like:
```json
{"message": "Hello from STS2 MCP v0.3.4", "status": "ok"}
```
If you get "Connection refused", the mod is not loaded — check that mods are enabled in the game's settings.
### 2. Give Your AI Instructions to Interact with the Game
**Clone or download the repository**, then:
| I prefer a skill | I prefer an MCP Server |
|---|---|
| Tell AI to reference docs/raw-*.md. Sit back, and watch it play. | Requires [Python 3.11+](https://www.python.org/) and [uv](https://docs.astral.sh/uv/). Follow the instructions below ⬇️ |
#### MCP server setup
Install [uv](https://docs.astral.sh/uv/) if you don't have it (macOS: `brew install uv`). Then run the server once to install dependencies:
```bash
uv run --directory /path/to/STS2_MCP/mcp python server.py --help
```
`uv` reads `mcp/pyproject.toml`, creates an isolated virtual environment, and installs the pinned dependencies from `mcp/uv.lock`. Subsequent runs reuse the environment instantly.
Add the server to your AI client's MCP config:
```json
{
"mcpServers": {
"sts2": {
"command": "uv",
"args": ["run", "--directory", "/path/to/STS2_MCP/mcp", "python", "server.py"]
}
}
}
```
**Claude Code**: add to your project's `.mcp.json`.
**Claude Desktop**: add to `claudeExcerpt of 10,972 characters
Read on GitHubWould you bet a product on this? Bounded 0–100 and slow moving.
matched fp:a8a69bd30568d104, topic:agentic-ai, desc:agentic
matched fp:a8a69bd30568d104, topic:mcp-server, desc:mcp server