.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/rllm-org/rllm
home/mcp-servers/rllm-org/rllm
rllm-org avatar

rllm

byrllm-org· 1 MCP server

Stars

5.7k

Forks

596

Category

Machine Learning & AI

View on GitHub

TL;DR

Reinforcement Learning for Language Agents

How to install rllm?

rllm-org/rllm
$git clone https://github.com/rllm-org/rllm

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install rllm by running `git clone https://github.com/rllm-org/rllm`, then use it for the current task and follow its documentation at https://github.com/rllm-org/rllm.

Files · 1

View on GitHub
README.md
1<div align="center">
2 
3<picture>
4 <source media="(prefers-color-scheme: dark)" srcset="docs/logo/rllm-github-logo-dark.png">
5 <img src="docs/logo/rllm-github-logo-light.png" alt="rLLM" width="360">
6</picture>
7 
8**Agentic RL on any harness, with any backend, on any benchmark.**
9 
10[![Documentation](https://img.shields.io/badge/Documentation-blue?style=for-the-badge&logo=googledocs&logoColor=white)](https://docs.rllm-project.com/)
11[![Slack](https://img.shields.io/badge/Slack-4A154B?style=for-the-badge&logo=slack&logoColor=white)](https://join.slack.com/t/rllmproject/shared_invite/zt-3pyblo6ef-m9kqAoInI8xSyUBkpuOyXA)
12[![Website](https://img.shields.io/badge/Site-%233f72af.svg?style=for-the-badge&logo=semanticweb&logoColor=white)](https://rllm-project.com)
13[![Blogs](https://img.shields.io/badge/Blogs-007AFF?style=for-the-badge)](https://rllm-project.com/blog)
14[![X](https://img.shields.io/badge/-black?logo=X&style=for-the-badge)](https://x.com/rllm_project)
15 
16<!-- [![PyPI](https://img.shields.io/pypi/v/rllm?style=for-the-badge)](https://pypi.org/project/rllm/) -->
17 
18</div>
19 
20rLLM is an open-source framework for training language agents with reinforcement learning. Bring any harness, run it in any sandbox, and switch training backends with one flag — the same agent code drives both eval and training.
21 
22## Core features
23 
24- **Any harness.** 10+ CLI harnesses (Claude Code, Codex, Terminus-2, mini-swe-agent, opencode, ...) plus Harbor-compatible task dirs. Or wrap your own agent — LangGraph, OpenAI Agents SDK, `openai.OpenAI` — with `@rllm.rollout`.
25- **Any sandbox.** Docker, Daytona, Modal, or local — with snapshot + warm-pool acceleration to keep rollouts cheap at training-scale.
26- **Multiple training backends, one API.** `verl` (distributed multi-GPU), `tinker` (single-machine), `fireworks` (Fireworks platform). Switch with one flag.
27- **60+ integrated benchmarks.** Math, code, MCQ, QA, search, VLM, translation, agentic — Terminal-Bench 2.0, SWE-bench, SkillsBench, AIME, MATH-500, GPQA, and more. `rllm eval <name>` auto-pulls and runs.
28- **Multiple training methods.** GRPO, REINFORCE, RLOO, SFT, on-policy distillation, and more.
29- **Battle-tested.** State-of-the-art open-source results (DeepScaleR-1.5B, DeepCoder-14B, DeepSWE-32B, FinQA-4B). Adopted by academic labs and industry research teams (see [Community Projects](#community-projects) below).
30 
31Read more on our [documentation site](https://docs.rllm-project.com/).
32 
33## Installation
34 
35rLLM requires `Python >= 3.11`. You can install it either directly via pip or build from source.
36 
37```bash
38uv pip install "rllm @ git+https://github.com/rllm-org/rllm.git"
39```
40 
41This installs dependencies for running `rllm` CLI with the `tinker` backend (single-machine, Tinker API). For other backends:
42 
43```bash
44# Distributed multi-GPU training (verl + vLLM/SGLang)
45uv pip install "rllm[verl] @ git+https://github.com/rllm-org/rllm.git"
46 
47# Fireworks training platform
48uv pip install "rllm[fireworks] @ git+https://github.com/rllm-org/rllm.git"
49```
50 
51For building from source or Docker, see the [installation guide](https://docs.rllm-project.com/installation).
52 
53## Quickstart
54 
55### Option A: CLI (no code needed)
56 
57```bash
58# 1. Configure your model provider
59rllm model setup
60 
61# 2. Evaluate on a benchmark
62rllm eval gsm8k
63 
64# 3. Train with RL
65rllm train gsm8k
66```
67 
68### Option B: Python API
69 
70Define a rollout (your agent) and an evaluator (your reward function), then hand them to the trainer:
71 
72```python
73# my_flow.py
74from openai import OpenAI
75import rllm
76from rllm.types import AgentConfig, Episode, Task, Trajectory
77 
78@rllm.rollout
79def solve(task: Task, config: AgentConfig) -> Episode:
80 client = OpenAI(base_url=config.base_url, api_key="EMPTY")
81 response = client.chat.completions.create(
82 model=config.model,
83 messages=[{"role": "user", "content": task.instruction}],
84 )
85 answer = response.choices[0].message.content or ""
86 return Episode(
87 trajectories=[Trajectory(name="solver", steps=[])],

Preview

rllm-org/rllmrllm-org/rllm
Reporllm-org/rllm
TypeMCP Servers
CategoryMachine Learning & AI
UpdatedJul 2026
LicenseApache-2.0
First seenJul 27, 2026

Tags

MCP

Related

6 picks
Type
  1. jochenyang avatarluma-mcpMulti-model vision understanding MCP server. Supports GLM-4.6V (Zhipu), DeepSeek-OCR (SiliconFlow - Free), Qwen3-VL-Flash (Aliyun), and Doubao-Seed-1.6 (Volcengine)MCP ServersJul 202611k82
  2. ggozad avatarhaiku.ragOpinionated agentic RAG powered by LanceDB, Pydantic AI, and DoclingMCP ServersJul 20265.7k549
  3. jjang-ai avatarvmlxMLX inference server for Apple Silicon — Text, Image, Video & Audio generationMCP ServersJul 20264.8k780
  4. tobocop2 avatarlilbeeThe whole local AI stack in one executable: run and manage local AI models across every GPU you have, and search your files, code, and the web pages you crawl, with answers that cite the source.MCP ServersJul 20264.8k39
  5. runapi-ai avatarmcp130+ AI models for image, video, music, and audio — 18 model families, one RunAPI account.MCP ServersJul 20262.8k52
  6. stabgan avataropenrouter-mcp-multimodalChat with 300+ LLMs via OpenRouter. Analyze and generate images, audio, and video from MCP.MCP ServersJul 20261.3k66