- ✓Open-source license (MIT)
- ✓Actively maintained (<30d)
- ✓Documented (README)
- !No description
claude mcp add rpcs1-sdk -- python -m rpcs1{
"mcpServers": {
"rpcs1-sdk": {
"command": "python",
"args": ["-m", "rpcs1"]
}
}
}Resumen de MCP Servers
# RPCS-1 SDK — AI Agent Tuner
<!-- mcp-name: io.github.travisbergen2/rpcs1-agent-tuner -->
**Start with the free tuner: find your AI agent’s likely failure mode, get runtime settings to try, and validate them with a harder case.**
RPCS-1 helps teams make agent settings deliberate rather than guessed. Describe the task, change rate, predictability, stakes, relevant context horizon, and commitment style; it returns a five-primitive profile, a runtime recommendation, and a next test. The suite also includes SendRight for catching ambiguous prompts before handoff and the Translation Bridge for profile-aware communication rendering.
## Repository Structure
```
rpcs1-sdk/
├── packages/core/ # TypeScript engine (@rpcs1/core): tuner + translation layer + receiver-profile intake
├── packages/web/ # Next.js app serving rpcs1.dev (tuner, translator, docs, Stripe, /mcp endpoint)
├── packages/mcp-server/ # Standalone STDIO MCP server (what Glama and MCP clients build)
├── sdk/python/ # Python SDK (pip install rpcs1)
├── skills/ # Canonical agent skill package (HF-HATP v2.0 SKILL.md)
├── docs/ # Architecture, deployment, launch playbook
└── .github/workflows/ # CI/CD
```
## Quick Start — Python SDK
```bash
pip install rpcs1
```
```python
from rpcs1 import recommend_params
config = recommend_params(
task_description="Customer support agent",
environment_entropy="dynamic",
environment_predictability="somewhat_predictable",
stakes="high",
target_platform="anthropic",
)
print(config.platform_parameters.temperature) # e.g. 0.52
print(config.predicted_regime) # 'stable'
print(config.reasoning) # cites Matching Principle
```
## Quick Start — TypeScript Core
```typescript
import { recommend } from '@rpcs1/core';
const rec = recommend({
task: { task_summary: 'Customer support agent' },
environment: {
entropy: 'dynamic',
predictability: 'somewhat_predictable',
stakes: 'high',
context_relevance: 'medium',
commitment_style: 'cautious',
},
target_platform: 'anthropic',
});
console.log(rec.platform_parameters.temperature);
console.log(rec.predicted_regime);
```
## Development
```bash
# Install dependencies
npm ci --include=optional
# Build and test TypeScript core
npm run build --workspace=@rpcs1/core
npm run test --workspace=@rpcs1/core
# Test Python SDK
cd sdk/python
pip install -e ".[dev]"
pytest -v
```
Web environment variables are documented in [`packages/web/.env.example`](./packages/web/.env.example)
(Stripe, Resend, license signing, rate limits). MCP production controls are listed under
[Production controls](#mcp-server) below.
The web app deploys to Vercel on Node 24 (region `iad1`); pushes to `main` trigger the production deployment.
## The Matching Principle
The SDK implements Pred-09-5 from IMM Paper 9:
> Stable receivers in an environment with entropy H satisfy TI ~ 1/H.
High-entropy environments → short attention windows (TI ~ 10).
Low-entropy environments → long attention windows (TI ~ 90).
Every parameter recommendation traces back to this principle or the basin stability geometry (oscillation/overload/freeze boundary conditions).
## Web App
- Free Tuner: [https://rpcs1.dev/tuner](https://rpcs1.dev/tuner)
- SendRight: [https://rpcs1.dev/send](https://rpcs1.dev/send)
- Translation Bridge: [https://rpcs1.dev/translator](https://rpcs1.dev/translator)
- Calibrate a communication-preference profile: [https://rpcs1.dev/calibrate](https://rpcs1.dev/calibrate)
The site can also explain the same product facts in technical, executive, plain-language, or literal-and-precise registers. The explanation changes; pricing, deliverables, and limitations do not.
## Brand — Explicit Formula (product) / RPCS-1 (mechanism)
The site fronts **one consumer product: Explicit Formula** — the box on the
landing page. *Explicit*: says exactly what it means (the product's one job);
*formula*: a repeatable method. The wordmark is an advisory-sticker homage
(`components/StickerLogo.tsx`), deliberately distinct from the trademarked
RIAA label.
The mechanism brand — **RPCS-1**, the receiver engine, its laws, and its
scorecard — is unchanged and renders as "Powered by RPCS-1" in the footer.
House rule: outcome on the wrapper, mechanism one click deep.
- The brand is a token: `packages/web/lib/brand.ts`. Renaming the product is
one env var (`NEXT_PUBLIC_BRAND_NAME`) or one line — no other code changes.
- Every station that used to compete for the nav (SendRight, Bridge,
Translator, Calibrate, Tuner, R&D, …) stays live at its original route and
is indexed at [/labs](https://rpcs1.dev/labs) (`packages/web/lib/labs.ts`).
- The consumer domain follows the deployment: set `NEXT_PUBLIC_APP_URL` when
it goes live. rpcs1.dev remains the mechanism home either way.
## SendRight (Interpretation Mirror + Hand-off)
SendRight is the type-and-send front door: type a prompt the way you'd say it
out loud, see the readings it actually supports, lock in the one you meant, and
hand it to your own model app with one click.
**Modules (packages/core):**
- `mirror(text)` — deterministic fork detectors (no ML, no API calls). Returns
`{ clean, readings[], ambiguousSpans[] }`. Detectors: compare-or-choose
("X or Y?" questions without an explicit verb), grouping forks ("A and B or C"),
scope forks ("only ... and ..."), dangling pronouns, bare objects ("fix it"),
external references ("the above"). **Contract: silent on clean prompts** —
zero-fork controls in `tests/mirror.test.ts` enforce it. Pure function,
callable from any front end (web box, NL2Build, CLI).
- `applyReading(text, clarifier)` — appends the chosen reading's clarifier so
the locked interpretation travels with the prompt.
- `buildHandoff(vendor, prompt)` / `listVendors()` — per-vendor capability
table for opening the user's own model app with the prompt pre-filled.
Prefill URL parameters are **undocumented vendor behavior and churn without
notice**; each entry carries a `verified` date and must be re-checked at
release. Verified 2026-07-25: ChatGPT, Claude, Perplexity, Grok support URL
prefill; Gemini and Copilot are clipboard-fallback only. Logged-out users may
lose the prefill at login. All vendors degrade gracefully to clipboard.
**Web:** `/send` (packages/web/app/send) renders the box via
`components/SendBox.tsx` — mirror runs client-side (debounced, zero network);
the hand-off happens in the user's own app. SendRight never makes the model
call and never sees the answer.
**Feasibility boundary (honest scope):** reasoning-stream digests and
mid-generation stop/realign are only possible where rpcs1 itself owns the API
call (the fan-out / power-user mode, not yet shipped). They are structurally
impossible in vendor chat UIs and via the MCP surface — SendRight's hand-off
path intentionally trades those away for zero keys, zero cost, and zero data
custody.
## MCP Server
RPCS-1 is also available as a public, anonymous, read-only MCP server:
```text
https://rpcs1.dev/mcp
```
It exposes eight read-only tools across four families:
- `recommend_agent_configuration` — diagnose an AI agent against environmental entropy,
predictability, stakes, context horizon, and commitment style; receive runtime settings to try and a next test.
- `interpret`, `normalize`, and `rewrite` — detect ambiguity, turn fragmented text into coherent prose,
and return style-specific rewrite instructions.
- `route_intent` — entropy routing over competing interpretations of a message: the calling model
proposes candidate readings (paraphrases and priors); the deterministic router computes the posterior
and decides commit, present options, or clarify. The commit-vs-clarify authority in the pipeline.
- `calibrate_profile`, `prepare_prompt`, and `render_reply` — create a continuous communication-preference
profile, recover intended meaning before an action, and render a reply for that profile.
### Translation Layer
> "Say what you mean. Hear what they meant."
The Translation Bridge treats the profile as a transportable parameter, not a category label. The five-question
Calibrate flow measures communication preferences for rendering only; it is not a psychological assessment or diagnosis.
`prepare_prompt` / `render_reply` use that profile on the inbound and outbound sides of an interaction. The canonical
agent-facing specification lives at [`skills/rpcs1-translation-layer/SKILL.md`](./skills/rpcs1-translation-layer/SKILL.md).
### Tuner examples
The first useful call is a support copilot under live pressure:
```text
Use recommend_agent_configuration to diagnose my support copilot.
Task: refund and billing dispute triage
Environment: dynamic, somewhat_predictable, high stakes
Context relevance: medium
Commitment style: cautious
Target platform: anthropic
```
The output should lead with the five-primitive profile, failure-risk score, predicted regime,
runtime posture, and next test to run.
The second useful call is a coding agent in a changing repository:
```text
Use recommend_agent_configuration to diagnose my coding agent.
Task: inspect a changing repository, edit files, run tests, and open a pull request
Environment: moderate, somewhat_predictable, medium stakes
Context relevance: long
Commitment style: balanced
Target platform: openai
```
The output should still lead with the five-primitive profile, failure-risk score, predicted regime,
runtime posture, and next test to run.
Connection details and client compatibility notes are available at
[https://rpcs1.dev/docs/mcp](https://rpcs1.dev/docs/mcp).
Practical coding, support, and research examples are available at
[https://rpcs1.dev/docs/examples](https://rpcs1.dev/docs/examples).
Hyperagent uses the fixed public OAuth client `hyperagent-rpcs1` with PKCE and the registered
callback `https://hyperagent.com/api/mcp-servers/callback`. No client secret Lo que la gente pregunta sobre rpcs1-sdk
¿Qué es travisbergen2/rpcs1-sdk?
+
travisbergen2/rpcs1-sdk es mcp servers para el ecosistema de Claude AI con 0 estrellas en GitHub.
¿Cómo se instala rpcs1-sdk?
+
Puedes instalar rpcs1-sdk clonando el repositorio (https://github.com/travisbergen2/rpcs1-sdk) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.
¿Es seguro usar travisbergen2/rpcs1-sdk?
+
Nuestro agente de seguridad ha analizado travisbergen2/rpcs1-sdk y le ha asignado un Trust Score de 77/100 (tier: Trusted). Revisa el desglose completo de comprobaciones superadas y flags en esta página.
¿Quién mantiene travisbergen2/rpcs1-sdk?
+
travisbergen2/rpcs1-sdk es mantenido por travisbergen2. La última actividad registrada en GitHub es del 2026-08-25, con 6 issues abiertos.
¿Hay alternativas a rpcs1-sdk?
+
Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.
Despliega rpcs1-sdk en tu cloud
Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.
¿Mantienes este repo? Añade un badge a tu README
Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.
[](https://claudewave.com/repo/travisbergen2-rpcs1-sdk)<a href="https://claudewave.com/repo/travisbergen2-rpcs1-sdk"><img src="https://claudewave.com/api/badge/travisbergen2-rpcs1-sdk" alt="Featured on ClaudeWave: travisbergen2/rpcs1-sdk" width="320" height="64" /></a>Más MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface
The fastest path to AI-powered full stack observability, even for lean teams.
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl!