freshcrate
Skin:/
Home > MCP Servers > openchatci

openchatci

The localhost AI Agent Runtime -- Chat UI, Tools, RAG, and MCP in one pip install

Why this rank:Release freshnessHealthy release cadenceStrong adoption

Description

The localhost AI Agent Runtime -- Chat UI, Tools, RAG, and MCP in one pip install

README

OpenChatCi

The localhost AI Agent Runtime -- Chat UI, Tools, RAG, and MCP in one pip install

PyPI License Python

OpenChatCi is a full-stack AI agent runtime that runs entirely on localhost. It connects a modern chat UI to AI agents via the AG-UI protocol, with built-in tools, RAG pipeline, MCP integration, and an OpenAI-compatible API -- all from a single pip install.

Why OpenChatCi?

  • One command, full stack -- pip install openchatci gives you Chat UI + Agent Runtime + Tools + RAG. No Docker, no cloud setup.
  • MCP native -- Claude Desktop-compatible config. Connect any MCP server. MCP Apps render interactive UI in chat.
  • Your data stays local -- File-based sessions, ChromaDB vectors, and uploads never leave your machine.
  • OpenAI-compatible API -- Expose your agent as /v1/responses for any app using the OpenAI SDK.

Hawaii-built, powered by Microsoft Agent Framework


UI Preview

Weather Tools | Mermaid Diagrams | Image Analysis

DevUI | Search Session | Image Generation


Quick Start

pip install openchatci
openchatci init
# Edit .env and set AZURE_OPENAI_ENDPOINT
az login
openchatci

Open: http://localhost:8000/chat


Features

Chat & UI

  • Chat with AI agents via AG-UI protocol (SSE streaming)
  • Rich message rendering: Markdown, code blocks, math (KaTeX), Mermaid diagrams
  • LLM reasoning visualization with collapsible thinking blocks
  • Web search with inline citation links
  • Voice input via microphone with Whisper transcription
  • Text-to-Speech playback and download via ElevenLabs
  • Multimodal image analysis (file attachment, drag-and-drop, URL)
  • Session management: save, search, pin, archive, fork, rename
  • Context window consumption display with warning levels
  • Per-turn token usage display
  • Three layout scenarios: Chat, Popup, Sidebar
  • Multilingual chat with browser auto-translation suppressed

Agent Tools

  • Image generation, editing, and Canvas mask editor via Azure OpenAI gpt-image-1.5
  • Weather tools with rich card widgets (Open-Meteo, no API key)
  • Coding tools (file read/write, shell execution, file search)
  • Prompt Templates: save, manage, and insert reusable prompts from "+" menu and message actions
  • Agent Skills: portable domain knowledge packages with progressive disclosure

Platform

  • MCP Integration: connect external tools via Model Context Protocol (Claude Desktop-compatible config)
  • MCP Apps: interactive UI rendered in sandboxed iframes for MCP tools with _meta.ui resources
  • RAG Pipeline: PDF ingestion with ChromaDB vector search, Azure OpenAI embedding, and source citations
  • Batch Processing: async job queue via Core MCP Server with real-time MCP Apps dashboard
  • Multi-model switching: switch between OpenAI models mid-conversation with per-model reasoning and context window
  • Session management: save, search, organize into folders, pin, archive, fork, rename
  • Background Responses: long-running agent timeout prevention with stream resumption
  • Context window consumption display with warning levels
  • Per-turn token usage display
  • OpenAI-compatible API: expose agent as /v1/responses endpoint for external apps via OpenAI SDK
  • CLI Client: chat, session/template/model management, TTS, and upload from the command line with local preflight validation for filename, MIME type, and size
  • HTTPS/TLS support for LAN access with Secure Context (mkcert recommended)
  • Multilingual chat with browser auto-translation suppressed
  • Three layout scenarios: Chat, Popup, Sidebar

Architecture

The platform connects the UI and agent runtime through the AG-UI protocol.


Development Setup

Prerequisites

Tool Version Install
Node.js 22+ https://nodejs.org/
pnpm 10+ npm install -g pnpm
Python 3.12+ https://www.python.org/
uv 0.9+ https://docs.astral.sh/uv/
Azure CLI 2.x https://learn.microsoft.com/cli/azure/install-azure-cli

1. Azure Authentication

The backend authenticates to Azure OpenAI via AzureCliCredential. You must log in before starting.

az login

Select the subscription if needed:

az account set --subscription <subscription-id>

2. Backend Setup

Windows (PowerShell):

cd backend
copy .env.sample .env
# Edit .env and set your Azure OpenAI endpoint
notepad .env
uv sync --prerelease=allow

macOS / Linux:

cd backend
cp .env.sample .env
# Edit .env and set your Azure OpenAI endpoint
nano .env
uv sync --prerelease=allow

.env configuration (required):

AZURE_OPENAI_ENDPOINT=https://<your-resource>.openai.azure.com/
AZURE_OPENAI_MODELS=gpt-4o

3. Frontend Setup

cd frontend
pnpm install

4. Start Development Servers

Open two terminals:

Terminal 1 -- Backend:

cd backend
uv run uvicorn app.main:app --reload --app-dir src

Backend starts at http://localhost:8000

Terminal 2 -- Frontend:

cd frontend
pnpm dev

Frontend dev server starts at http://localhost:5173 (API requests are proxied to the backend)


5. Production Build

cd frontend
pnpm build

cd ../backend
uv run uvicorn app.main:app --app-dir src

The backend serves both frontend build artifacts and the API at http://localhost:8000


CLI Usage

Server Commands

openchatci                                Start the server
openchatci init                           Generate .env from template
openchatci init --force                   Overwrite existing .env
openchatci --host 0.0.0.0                 Bind to all interfaces
openchatci --port 9000                    Use custom port
openchatci --skip-auth-check              Skip Azure CLI login check
openchatci --ssl-certfile cert.pem \
           --ssl-keyfile key.pem          Enable HTTPS (LAN access)
openchatci --version                      Show version

Client Commands

Interact with a running OpenChatCi instance from the command line. All client commands support --json for machine-readable output and --base-url / --api-key for remote server access.

# Chat with the agent (single-shot)
openchatci chat "What is the weather in Tokyo?"

# Interactive chat (REPL mode)
openchatci chat -i

# Chat with specific model and session
openchatci chat "hello" -m gpt-4o -s <session-id>

# Session management
openchatci sessions list
openchatci sessions get <id> --messages
openchatci sessions delete <id>
openchatci sessions export <id> -o backup.json

# Template management
openchatci templates list
openchatci templates create -n "Bug Report" -c "Describe the bug..."

# Model info
openchatci models list

# Text-to-Speech
openchatci tts "Hello world" -o greeting.mp3

# File upload
openchatci upload document.pdf -s <session-id>

# JSON output for scripting / agent-to-agent
openchatci sessions list --json | jq '.[].thread_id'

# Remote server with HTTPS (self-signed cert)
openchatci sessions list --base-url https://192.168.1.10:8000 --no-verify

openchatci upload validates the local file before sending the request: the file must exist, the sanitized filename must remain valid, the MIME type must be one of the supported image formats or PDF, and the size limit must stay within 20MB for images or 50MB for PDFs.

Environment variables for client configuration:

OPENCHATCI_URL=http://localhost:8000       # Default server URL
OPENCHATCI_API_KEY=sk-your-key             # Bearer token (reuses API_KEY if not set)

Tech Stack

Layer Technology Purpose
Frontend React 19 + TypeScript + Vite UI framework
Frontend Tailwind CSS + shadcn/ui Styling + Components
Frontend Biome Format + Lint
Backend FastAPI + Python 3.12+ API server
Backend Microsoft Agent Framework Agent execution + Tool control
Backend Ruff Format + Lint
Package uv Python dependency management
Package pnpm Node.js dependency management

Optional Features

Prompt Templates

Save and reuse prompt templates from the chat interface:

TEMPLATES_DIR=.templates
  • Click + button > Use template to open the management modal
  • Create, edit, delete templates with name, category, and body
  • Insert to Chat pastes the template into the input (editable before send)
  • Click the FileText icon on any user message to save it as a template

Templates are stored as individual JSON files in the configured directory.


Image Generation

Generate and edit images via Azure OpenAI gpt-image-1.5:

IMAGE_DEPLOYMENT_NAME=gpt-image-1.5
  • generate_image: create images from text prompts with configurable size, quality, format, background, and count (1-4)
  • edit_image: modify existing session images using text prompts (prompt-based)
  • Canvas Mask Editor: click the Edit button on any generated image to open a full-screen mask editor
    • Draw over areas to edit with brush tools (S/M/L), eraser, undo/redo
    • Enter a prompt and click Generate -- the agent edits only the masked region
  • Generated images displayed inline in chat with click-to-open full-size
  • Images stored in session upload directory and persist across reloads

The agent automatically uses these tools when users request image creation or editing. No opt-in flag needed -- the feature activates when IMAGE_DEPLOYMENT_NAME is set.


Coding Tools

Enable AI-powered file operations and shell execution:

CODING_ENABLED=true
CODING_WORKSPACE_DIR=C:\path\to\workspace

Text-to-Speech

Enable on-demand TTS for messages via ElevenLabs:

ELEVENLABS_API_KEY=your-api-key
TTS_MODEL_ID=eleven_multilingual_v2
TTS_VOICE_ID=your-voice-id

Speaker button plays audio, download button saves MP3 file. Audio is cached to avoid duplicate API calls.


Agent Skills

Extend the agent with domain knowledge packages (Agent Skills specification):

SKILLS_DIR=.skills

Place SKILL.md files in subdirectories. The agent discovers and loads skills on demand:

.skills/
  my-skill/
  +-- SKILL.md          # Required: instructions + metadata
  +-- scripts/          # Optional: executable code
  +-- references/       # Optional: documentation
  +-- assets/           # Optional: templates, resources

Skills use progressive disclosure to minimize context window consumption (~100 tokens per skill when idle).


MCP Integration

Connect external tools and services via Model Context Protocol using the Claude Desktop-compatible configuration format:

MCP_CONFIG_FILE=mcp_servers.json

Create a mcp_servers.json file (see backend/mcp_servers.sample.json):

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-filesystem", "/path/to/workspace"]
    },
    "remote-api": {
      "url": "https://api.example.com/mcp",
      "headers": { "Authorization": "Bearer token" }
    }
  }
}
  • stdio servers (with command): OpenChatCi spawns the process and communicates via stdin/stdout
  • HTTP/SSE servers (with url): OpenChatCi connects to a running remote server
  • MCP tools appear alongside built-in tools (Weather, Coding, Image Generation)
  • Tool calls display with categorized icons: built-in tools have dedicated icons, Skills tools show BookOpen/FileText, MCP tools show Plug
  • Server lifecycle managed automatically (startup/shutdown with zombie process prevention)
  • Reuse your existing Claude Desktop / Claude Code / Cursor MCP configurations

MCP Apps

MCP tools that declare a _meta.ui resource automatically render interactive UI within chat messages. The HTML View runs in a secure double-iframe sandbox with CSP enforcement.

# Optional: change the sandbox proxy port (default 8081)
# MCP_APPS_SANDBOX_PORT=8081
  • Automatic discovery: UI-enabled MCP tools detected at server startup
  • Double-iframe sandbox: Views run on a separate origin with no access to host DOM, cookies, or storage
  • CSP enforcement: external resources blocked by default; servers declare required domains via metadata
  • View-to-Server proxying: all View interactions proxied through the Host (auditable)
  • Display modes: inline (in chat) and fullscreen
  • Session persistence: View HTML stored as files for reload restoration
  • Progressive enhancement: tools work as text-only when UI is unavailable or unsupported

No configuration needed -- MCP Apps activates when MCP tools have _meta.ui.resourceUri in their definitions. The sandbox proxy starts automatically alongside MCP servers.


RAG Pipeline

Upload PDF documents and ask questions about their content using vector similarity search:

CHROMA_DIR=.chroma
RAG_COLLECTION_NAME=default
RAG_TOP_K=5
EMBEDDING_DEPLOYMENT_NAME=text-embedding-3-small
RAG_CHUNK_SIZE=800
RAG_CHUNK_OVERLAP=200
  1. Click + button > Attach PDF to upload a document
  2. Ask the agent: "Please ingest this document"
  3. The batch job processes: PDF parsing > chunking > embedding > ChromaDB storage
  4. Ask questions: "What does the document say about X?"
  5. The agent searches the knowledge base and responds with source citations (filename, page)
  • ChromaDB PersistentClient: file-based vector storage (.chroma/ directory)
  • Azure OpenAI Embedding: text-embedding-3-small for consistent multilingual quality
  • Overlap chunking: configurable chunk size (800 chars) and overlap (200 chars)
  • Metadata filtering: source filename, page number, chunk index for precise citation
  • Deduplication: re-ingesting the same file overwrites existing chunks automatically
  • PDF file cards: PDFs display as file icon cards (not image thumbnails) in chat

Requires the Batch Processing MCP Server to be configured (see below).


Batch Processing

Run long-running tasks (RAG ingestion, data pipelines) as background batch jobs with a real-time monitoring dashboard:

  1. Add "batch" to your mcp_servers.json (see backend/mcp_servers.sample.json)
  2. Start the server -- the batch MCP server launches automatically
  3. Ask the agent: "Submit a sleep job for 60 seconds"
  4. A real-time dashboard appears inline showing progress, status, and controls
{
  "mcpServers": {
    "batch": {
      "command": "uv",
      "args": ["run", "python", "-m", "app.mcp_batch.server"],
      "env": { "BATCH_JOBS_DIR": ".jobs" }
    }
  }
}
  • Conversation-based management: submit, monitor, cancel, delete jobs via chat
  • MCP Apps dashboard: auto-refreshing progress bars, cancel/delete with confirmation dialogs
  • File-based persistence: each job stored as a JSON file (crash-resilient)
  • Extensible job types: sample sleep job + RAG Ingestion Pipeline (rag-ingest)
  • Cooperative cancellation: jobs check cancel flag at each progress checkpoint

Background Responses

For long-running agent operations (e.g., o3/o4-mini reasoning models), enable Background Responses to prevent timeouts:

  1. Click the BG toggle button (left of the context window indicator)
  2. ChatInput border turns blue when active
  3. Continuation tokens are auto-saved to session for page reload resumption

No environment variable needed -- toggle on/off per session via the UI.


OpenAI Compatible API

Expose the agent as an OpenAI-compatible endpoint for external applications:

API_KEY=sk-openchatci-your-secret-key-here

Any app using the OpenAI SDK can consume the agent by pointing base_url:

from openai import OpenAI

client = OpenAI(
    base_url="http://localhost:8000/v1",
    api_key="sk-openchatci-your-secret-key-here",
)

# Non-streaming
response = client.responses.create(
    model="openchatci",
    input="What is the weather in Tokyo?",
)

# Streaming
stream = client.responses.create(
    model="openchatci",
    input="Explain quantum computing.",
    stream=True,
)
for event in stream:
    if event.type == "response.output_text.delta":
        print(event.delta, end="", flush=True)
  • All agent Tools (Weather, Coding, Image Generation) and Skills are available
  • Multi-turn conversations via previous_response_id
  • API sessions appear in the chat sidebar with an API badge
  • Streaming (SSE) and non-streaming response modes
  • For HTTPS/LAN access, see OpenAI API Setup Guide

HTTPS / LAN Access

Access OpenChatCi from other devices on your home network (phones, tablets, other PCs). HTTPS enables browser Secure Context for voice input and clipboard on non-localhost origins.

APP_HOST=0.0.0.0
APP_SSL_CERTFILE=.certs/cert.pem
APP_SSL_KEYFILE=.certs/key.pem

Setup:

  1. Install mkcert and run mkcert -install
  2. Issue a certificate: mkcert -cert-file .certs/cert.pem -key-file .certs/key.pem <your-ip> localhost 127.0.0.1
  3. Set the env vars above in .env
  4. Allow ports through firewall (8000 for production, 5173 for dev mode)
  5. Install the CA certificate (rootCA.pem) on each client device

Access from LAN: https://<your-ip>:8000

When SSL is not configured, the server runs in HTTP mode as usual (no breaking change).


Multi-Model Switching

Switch between OpenAI-family models mid-conversation:

AZURE_OPENAI_MODELS=gpt-4o,o3,gpt-4.1-mini
  • Model selector dropdown appears above the chat input (hidden when only one model configured)
  • Per-session model selection persisted across page reloads
  • Regenerate with different model: click the chevron on the Regenerate button to choose a model
  • Per-message model label: each assistant message shows which model generated it
  • All models share the same Tools, Skills, and MCP integrations

Per-model reasoning effort (only listed models send the parameter):

REASONING_EFFORT=o3:high,o4-mini:medium

Per-model context window limits:

MODEL_MAX_CONTEXT_TOKENS=gpt-4o:128000,o3:200000,gpt-4.1-mini:1047576

Context Window

The progress bar above the chat input shows context window consumption rate. Colors change at 80% (amber) and 95% (red). When multiple models are configured, the display updates automatically when switching models.


DevUI

Enable Microsoft Agent Framework DevUI for debugging:

DEVUI_ENABLED=true
DEVUI_PORT=8080

Access at http://localhost:8080


Supported Platforms

  • Windows 10/11
  • macOS (Intel / Apple Silicon)
  • Linux (Ubuntu, Debian, etc.)

License

Apache-2.0

Release History

VersionChangesUrgencyDate
v0.48.0This release adds new features to OpenChatCi. ## Highlights ### Pluggable Auth Provider Protocol (v0.46.0) - New `AuthProvider` Protocol on the OSS core lets `verify_api_key` and `verify_api_key_strict` delegate to a process-global provider instead of hard-coding "Bearer static-string equality". - Two OSS providers ship out of the box: `ApiKeyAuthProvider` (the auto-selected default; preserves the pre-0.46 CTR-0083 behavior bit-for-bit including loopback bypass and the LAN 401/503 gate) and `NHigh4/25/2026
v0.45.1This release adds four new capabilities to OpenChatCi: **Unified API Authentication**, **Agent Tool Safety Hardening**, **DevUI Loop Isolation**, and **MCP Configuration Hardening**. ## Highlights ### Unified API Authentication (v0.43.0, corrected in v0.44.1) - `API_KEY` is now a single Bearer token that protects both the external-app OpenAI Responses API (`/v1/responses`) and every write REST endpoint (image edit, upload, MCP Apps RPC, sessions write, templates write, TTS, STT) when reached High4/24/2026
v0.42.0This release adds three new features to OpenChatCi: GitHub Release Pipeline, CLI Client, and Chat Folder Management. ## Highlights ### Chat Folder Management - Added single-level folder management to the session sidebar - Separate "Folders" and "Chats" sections in sidebar navigation - Backend-authoritative folder persistence via `.sessions/folders/index.json` - Folder CRUD API: `GET/POST /api/sessions/folders`, `DELETE /api/sessions/folders/{id}` - Session-to-folder assignment via `PATCH /api/High4/7/2026
v0.41.0This release adds CLI Client Extension and Chat UI spacing improvement to OpenChatCi. ## Highlights ### CLI Client - **Chat from the terminal**: `openchatci chat "message"` for single-shot agent chat via AG-UI SSE streaming; `openchatci chat -i` for interactive REPL mode with multi-turn conversations - **Session management**: `openchatci sessions list|get|delete|rename|archive|pin|export` -- list, inspect, export, and manage sessions without a browser - **Template management**: `openchatci temMedium4/6/2026
v0.40.0This release adds GitHub Repository Optimization for Discoverability to OpenChatCi: new project tagline, README restructure, GitHub Release pipeline, license unification, and PyPI classifiers. ## Highlights ### GitHub Repository Optimization - **New tagline**: "The localhost AI Agent Runtime -- Chat UI, Tools, RAG, and MCP in one `pip install`" - **README restructured**: value-first presentation with PyPI/license/Python badges, "Why OpenChatCi?" key differentiators section, and categorizMedium4/4/2026
v0.39.0This release upgrades the core dependency Microsoft Agent Framework to production-stable 1.0.0. ## Highlights ### Microsoft Agent Framework 1.0.0 Upgrade - Upgraded `agent-framework` from `1.0.0rc2` to **`1.0.0` (production stable)** - Upgraded `agent-framework-ag-ui` from `1.0.0b260304` to `1.0.0b260402` - Upgraded `agent-framework-devui` from `1.0.0b260304` to `1.0.0b260402` - Migrated `BaseHistoryProvider` to `HistoryProvider` (deprecated alias removed in MAF 1.0.0) - Migrated `AzuMedium4/3/2026
v0.38.0This release adds UX refinements to OpenChatCi: Browser auto-translation control and tool call label organization. ## Highlights ### Chat UX Refinement - Browser auto-translation suppressed via `translate="no"` attribute and `<meta name="google" content="notranslate">` on `index.html` for multilingual chat content - Tool call labels organized with dedicated icons for Skills tools and RAG search: - `rag_search` -> Search icon + "Searching documents..." - `load_skill` -> BookOpen icoMedium3/31/2026
v0.37.0This release adds RAG (Retrieval-Augmented Generation) pipeline to OpenChatCi, enabling PDF document ingestion and vector similarity search powered by ChromaDB and Azure OpenAI Embedding. ## Highlights ### RAG Pipeline with ChromaDB - ChromaDB PersistentClient for file-based local vector storage in `.chroma/` directory - `rag-ingest` batch job type in Batch MCP Server for PDF document ingestion - PDF parsing via PyMuPDF with page-level metadata extraction - Character-based overlapMedium3/24/2026
v0.36.0This release adds Batch Processing MCP Server with real-time MCP Apps dashboard, and includes bug fixes for MCP Apps UI discovery and integration tests. ## Highlights ### Batch Processing MCP Server - Core MCP Server module (`backend/src/app/mcp_batch/`) using FastMCP with stdio transport - `BATCH_JOBS_DIR` environment variable for job file storage (default: `.jobs`) - File-based job persistence: one JSON file per job, individual file avoids write conflicts - Job queue with asyncio tasLow3/22/2026
v0.35.0This release adds Multi-Model Switching to OpenChatCi, enabling mid-conversation model switching across OpenAI-family models on Microsoft Foundry. ## Highlights ### Multi-Model Switching - AZURE_OPENAI_MODELS environment variable: comma-separated deployment names (first entry is default) - Model selector dropdown above ChatInput for mid-conversation switching (hidden when single model) - Regenerate with different model: chevron dropdown on the Regenerate button lets you re-generate anLow3/21/2026
v0.34.0This release adds a new feature to OpenChatCi: MCP Apps Integration. ## Highlights ### MCP Apps - MCP tools with _meta.ui.resourceUri render interactive HTML Views in sandboxed iframes within chat messages - Double-iframe sandbox architecture with separate-origin proxy server for security isolation - CSP enforcement via HTTP headers based on MCP server-declared domain requirements - JSON-RPC over postMessage initialization handshake (ui/initialize -> host context -> initialized) - TLow3/20/2026
v0.33.0This release adds two new features to OpenChatCi: OpenAI Compatible API and MCP Integration. ## Highlights ### OpenAI Compatible API - POST /v1/responses endpoint with OpenAI Responses API format on the main server - Static Bearer token authentication via API_KEY environment variable - Streaming (SSE) and non-streaming response modes - All agent Tools (Weather, Coding, Image Generation) and Skills available through the API - Multi-turn conversation via previous_response_id chaining Low3/19/2026
v0.29.0This release adds four new features: HTTPS/TLS support for LAN access. ## Highlights ### HTTPS/TLS Support for LAN Access (v0.29.0) - Optional HTTPS via `APP_SSL_CERTFILE` / `APP_SSL_KEYFILE` environment variables - Enables browser Secure Context on LAN IP connections (voice input, clipboard) - CLI flags `--ssl-certfile` / `--ssl-keyfile` for `openchatci` command - Dev launcher (`dev-full.mjs`) and Vite dev server also support HTTPS when configured - mkcert (local CA) recommended for Low3/18/2026
v0.28.0This release adds three new features to OpenChatCi: AI Image Generation, and Canvas Mask Editor for region-based image editing. ## Highlights ### Image Generation (v0.27.0) - AI-powered image generation and editing via Azure OpenAI gpt-image-1.5 - generate_image tool: text to image(s) with configurable size, quality, format, background, and count (1-4) - edit_image tool: modify existing session images using text prompts - Core tool: always enabled when IMAGE_DEPLOYMENT_NAME is configLow3/17/2026
v0.26.0This release adds Prompt Templates to OpenChatCi, enabling users to save, manage, and reuse prompt templates directly from the chat interface. ## Highlights ### Prompt Templates (v0.26.0) - File-based JSON template management with full CRUD REST API - Template management modal with left-right split layout - Left panel: searchable template list with category badges and timestamps - Right panel: detail/edit form with required field validation (name, body) - "+" button extended with Low3/16/2026
v0.25.0 This release adds four new features to OpenChatCi: Text-to-Speech, context window consumption display, file-based Agent Skills, and Background Responses for long-running operations. ## Highlights ### Text-to-Speech (v0.22.0) - On-demand TTS for User and Assistant messages via ElevenLabs Eleven Multilingual v2 - Speaker button plays audio with stop control on hover - Download button saves audio as MP3 file - Audio cached in memory to avoid duplicate API calls - Text preLow3/15/2026
v0.21.1This is the initial public release of OpenChatCi. OpenChatCi is a local-first AI agent chat application built with FastAPI, React, AG-UI Protocol, and Microsoft Agent Framework. This release consolidates the project’s progress up to v0.21.1 into the first GitHub-published version. ## Highlights ### Core chat application - Full-stack chat application with FastAPI backend and React frontend - Microsoft Agent Framework integration - AG-UI Protocol-based agent communication - Real-tiLow3/14/2026

Dependencies & License Audit

Loading dependencies...

Similar Packages

AgenticXAgenticX is a unified, production-ready multi-agent platform — Python SDK + CLI (agx) + Studio server + Machi desktop app. Features Meta-Agent orchestration, 15+ LLM providers, MCP Hub, hierarchical mv0.4.2
openclaw-superpowers44 plug-and-play skills for OpenClaw — self-modifying AI agent with cron scheduling, security guardrails, persistent memory, knowledge graphs, and MCP health monitoring. Your agent teaches itself new main@2026-05-03
AIDomesticCoreAIJ🛠️ Build a robust AI Kernel for stable, auditable, and sovereign AI systems, ensuring secure execution and compliance across various domains.main@2026-06-07
mcp-agent-framework🤖 Orchestrate AI agents at scale using the MCP framework, enabling seamless context sharing, communication, and integration for enhanced collaboration.master@2026-06-07
MCP---Agent-Starter-Kit🚀 Build and explore multi-agent AI workflows with ready-to-use projects for document serving, Q/A bots, and orchestration.main@2026-06-05

More in MCP Servers

PlanExeCreate a plan from a description in minutes
agentroveYour own Claude Code UI, sandbox, in-browser VS Code, terminal, multi-provider support (Anthropic, OpenAI, GitHub Copilot, OpenRouter), custom skills, and MCP servers.
ProxmoxMCP-PlusEnhanced Proxmox MCP server with advanced virtualization management and full OpenAPI integration.
node9-proxyThe Execution Security Layer for the Agentic Era. Providing deterministic "Sudo" governance and audit logs for autonomous AI agents.