Command Palette

Search for a command to run...

UnylyUnyly
Весь каталог

Agent Playground

БесплатноНе проверен

LLM Harness for developing, debugging, and evaluating custom agents, tools, MCP servers, prompts, and memory constructs using Anthropic, OpenAI, or a local mode

GitHubEmbed

Описание

LLM Harness for developing, debugging, and evaluating custom agents, tools, MCP servers, prompts, and memory constructs using Anthropic, OpenAI, or a local model.

README

Branded multi-provider agent harness — chat, tools, MCP servers, and auto-saved transcripts — for experimenting with agentic systems against Anthropic, OpenAI, and locally-hosted models (vLLM, LM Studio, llama.cpp, anything OpenAI-compatible).

Setup

# 1. Activate the project venv (Python 3.14)
source .agent-playground/bin/activate

# 2. Install
pip install -e ".[dev]"

# 3. Configure
cp .env.example .env
$EDITOR .env   # set ANTHROPIC_API_KEY / OPENAI_API_KEY / LOCAL_BASE_URL

Run

streamlit run app.py

Opens a browser on http://localhost:8501. Click Basic Chat in the sidebar.

Smoke-test without the GUI

python -m playground.smoke --provider anthropic --prompt "Say hi"

Run the test suite

pytest

Add a local tool

Create a Python file under playground/tools/examples/ (or anywhere; just make sure it gets imported):

from playground.tools import register_tool

@register_tool
def reverse_string(s: str) -> str:
    """Reverse a string."""
    return s[::-1]

Add the import to playground/tools/examples/__init__.py. Refresh the chat page — the tool appears in "Local tools" and the LLM can call it.

Add an MCP server

Edit mcp.json:

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-filesystem", "/tmp/fs"],
      "description": "Read/write files under /tmp/fs",
      "enabled": true
    }
  }
}

Click Reload mcp.json in Basic Chat's sidebar.

Layout

  • app.py — Home page
  • pages/1_Basic_Chat.py — the MVP chat page
  • playground/ — shared package: providers, tools, prompts, MCP, persistence
  • mcp_servers/notes/ — bundled MCP server (agent scratch notes)
  • conversations/ — auto-saved JSON transcripts (gitignored)
  • tests/ — pytest suite
  • docs/superpowers/ — design specs and implementation plans

Memory + Dreaming

The bundled memory MCP server gives the playground agent persistent cross-conversation memory. A separate background dreamer process runs a six-stage consolidation cycle that produces a bi-temporal knowledge graph plus speculative hypotheses you can curate from the new Dreaming page.

Quick start:

  1. Set LOCAL_BASE_URL to your local OpenAI-compatible inference server (vLLM, LM Studio, llama.cpp, etc.).
  2. streamlit run app.py — the memory server starts automatically.
  3. Send a few messages in Basic Chat. Then open Dreaming → click Start daemon and Dream now (full).

Design: docs/superpowers/specs/2026-05-11-memory-dreaming-mcp-design.md.

Spec

Full v1 design: docs/superpowers/specs/2026-05-09-travisml-agent-playground-design.md.

from github.com/Travis-ML/agent-playground

Установка Agent Playground

У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.

▸ github.com/Travis-ML/agent-playground

FAQ

Agent Playground MCP бесплатный?

Да, Agent Playground MCP бесплатный — установка в пару кликов через Unyly без оплаты.

Нужен ли API-ключ для Agent Playground?

Нет, Agent Playground работает без API-ключей и переменных окружения.

Agent Playground — hosted или self-hosted?

Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.

Как установить Agent Playground в Claude Desktop, Claude Code или Cursor?

Открой Agent Playground на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.

Похожие MCP

Compare Agent Playground with

Не уверен что выбрать?

Найди свой стек за 60 секунд

Автор?

Embed-бейдж для README

Похожее

Все в категории ai