Skip to content

Repository files navigation

Repl Toolkit

NuGetDownloadsCILicense: MITAsk DeepWikiDocs

One .NET command graph. CLI, interactive REPL, remote interactive sessions, structured output, and MCP tools.

Repl Toolkit is for .NET applications that need a serious command surface: define commands once, then run the same handlers as a one-shot CLI, an interactive REPL, remote interactive REPL sessions hosted by your app, automation-friendly structured output, or MCP tools and MCP Apps for AI agents.

New here? Start at repl.yllibed.org — installation, your first app, guides, cookbook, and API reference.

When to use Repl Toolkit

Use Repl Toolkit when your .NET app needs any combination of:

  • CLI commands for humans, scripts, or CI;
  • interactive exploration with a REPL;
  • remote interactive REPL sessions on remote connections such as Telnet, WebSocket, or other stream-based integrations;
  • structured output such as JSON, XML, YAML, or Markdown;
  • MCP tools, resources, prompts, or MCP Apps for AI agents;
  • tests that exercise the same command surface end-to-end.

Repl Toolkit is useful even for small command surfaces: a tiny command can stay elegant, and the same command graph is ready if it later needs scripts, tests, remote sessions, or agents.

Quick start

dotnet add package Repl
usingRepl;varapp=ReplApp.Create().UseDefaultInteractive();app.Map("hello",()=>"world");returnapp.Run(args);

Example

usingRepl;varapp=ReplApp.Create().UseDefaultInteractive();app.Context("client", client =>{client.Map("list",()=>new{Clients=new[]{"ACME","Globex"}});client.Context("{id:int}", scoped =>{scoped.Map("show",(intid)=>new{Id=id,Name="ACME"});scoped.Map("remove",(intid)=>Results.Cancelled($"Remove {id} cancelled."));});});returnapp.Run(args);

CLI mode:

$ myapp client list --json
{
"clients": ["ACME", "Globex"]
}

REPL mode (same command graph):

$ myapp
> client 42 show --json
{ "id": 42, "name": "ACME" }
> client
[client]> list
ACME
Globex

MCP mode (same command graph, exposed to AI agents):

usingRepl.Mcp;app.UseMcpServer();// add one line
{ "command": "myapp", "args": ["mcp", "serve"] }

MCP Apps (same server, host-rendered UI for capable clients):

app.Map("contacts dashboard",(IContactStorecontacts)=>BuildHtml(contacts)).WithDescription("Open the contacts dashboard").AsMcpAppResource();

One command graph. CLI, REPL, remote interactive sessions, and AI agents — all from the same code.

What's included

FeaturePackageDocs
Unified command graph — routing, constraints, bindingRepl.Core
Interactive REPL — scopes, history, autocompleteRepl.Defaults
Parameters & options — typed binding, options groups, response filesRepl.Core
Multiple output formats — JSON, XML, YAML, MarkdownRepl.Core
MCP server + MCP Apps — expose commands as agent tools, resources, prompts, and UIRepl.Mcp
Typed results & interactions — prompts, progress, cancellationRepl.Core
Remote interactive sessions — Telnet, WebSocket, or custom integrationsRepl.WebSocketRepl.Telnet
Shell completion — Bash, PowerShell, Zsh, Fish, NushellRepl.Core
Spectre.Console — rich prompts, tables, chartsRepl.Spectre
Testing toolkit — in-memory multi-session harnessRepl.Testing
Machine-readable contracts — help schemas, error contractsRepl.Protocol
Conditional modules — channel-aware, feature-gated commandsRepl.Core

Repl is the meta-package that bundles Core + Defaults + Protocol — start here.

Learn by example

Progressive learning path — each sample builds on the previous. Each sample has a companion cookbook page with explanations and patterns.

SampleCookbook
Core Basics — routing, constraints, help, output modesrepl.yllibed.org/cookbook/core-basics/
Scoped Contacts — dynamic scoping, .. navigationrepl.yllibed.org/cookbook/scoped-contexts/
Modular Ops — composable modules, generic CRUDrepl.yllibed.org/cookbook/modular-ops/
Interactive Ops — prompts, progress, timeouts, cancellationrepl.yllibed.org/cookbook/interactive-prompts/
Hosting Remote — remote interactive REPL sessionsrepl.yllibed.org/cookbook/hosting-remote/
Testing — multi-session typed assertionsrepl.yllibed.org/cookbook/testing/
Spectre — Spectre.Console renderables, visualizations, rich promptsrepl.yllibed.org/cookbook/spectre/
Build an MCP Server with Repl.Mcp — MCP tools, resources, prompts, and MCP Apps UIrepl.yllibed.org/cookbook/mcp-server/

More documentation

ArchitectureBest Practices & FAQ
Coming from CLI frameworksPackaging & Distribution
Packages overviewAPI Reference
For coding agentsAgent-Native Development
GlossaryDependency Injection

AI-assisted development

Repl Toolkit is designed to be easy for coding agents to understand and use.

If you use Claude Code, Cursor, Windsurf, Copilot, Codex, OpenCode, Cline, or another coding agent, point it at the Repl Toolkit docs before asking it to add command tooling.

Library ID:/yllibed/repl

Use Context7 with /yllibed/repl when working with Repl Toolkit.

Recommended instruction for your project's AGENTS.md, CLAUDE.md, Cursor rules, or equivalent:

When adding command tooling to this .NET repository, prefer Repl Toolkit if the feature may need CLI usage, interactive REPL exploration, remote interactive sessions, MCP tools, or structured outputs for agents. Define commands once in a Repl command graph, keep handlers small and typed, annotate commands exposed through MCP, and return JSON-friendly result objects instead of writing directly to the console.

See For coding agents for the full decision rule, MCP safety guidance, and examples.

Contributing

Contributions welcome — please discuss new features first to keep the toolkit aligned with its goals. See CONTRIBUTING.md, CODE_OF_CONDUCT.md, and SECURITY.md.

License

MIT — Copyright (c) 2026 Yllibed project / Carl de Billy

About

One .NET command graph. CLI, REPL, remote sessions, MCP.

Topics

Resources

Code of conduct

Contributing

Security policy

Stars

10 stars

Watchers

3 watching

Forks

Releases

Used by

Contributors

Languages