update mcp_filter docs and talk about docker build and jaeger ui

This commit is contained in:
Adil Hafeez 2025-12-24 10:35:35 -08:00
parent f6fe7b84dc
commit 68a07a2104
No known key found for this signature in database
GPG key ID: 9B18EF7691369645

View file

@ -35,23 +35,22 @@ This demo consists of four components:
## Quick Start ## Quick Start
### 1. Start all agents ### 1. Start everything with Docker Compose
```bash ```bash
./start_agents.sh docker compose up --build
``` ```
This starts: This brings up:
- Input Guards MCP server on port 10500 - Input Guards MCP server on port 10500
- Query Rewriter MCP server on port 10501 - Query Rewriter MCP server on port 10501
- Context Builder MCP server on port 10502 - Context Builder MCP server on port 10502
- RAG Agent REST server on port 10505 - RAG Agent REST server on port 10505
- Plano listener on port 8001 (and gateway on 12000)
- Jaeger UI for viewing traces at http://localhost:16686
### 2. Start plano > Set `OPENAI_API_KEY` in your environment before running; `LLM_GATEWAY_ENDPOINT` defaults to `http://host.docker.internal:12000/v1`.
```bash
planoai up --foreground
```
### 3. Test the system ### 2. Test the system
```bash ```bash
curl -X POST http://localhost:8001/v1/chat/completions \ curl -X POST http://localhost:8001/v1/chat/completions \
-H "Content-Type: application/json" \ -H "Content-Type: application/json" \