Skip to content

Commit 8a3855b

Browse files
author
Ivo Djidrovski
committed
Docs: add Quickstart TL;DR
1 parent 8ecbc3f commit 8a3855b

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

README.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,26 @@ The O-QT MCP server turns that workflow into an **open, programmable interface**
6161

6262
---
6363

64+
## Quickstart TL;DR
65+
66+
```bash
67+
# 1) install
68+
poetry install
69+
70+
# 2) configure
71+
cp .env.example .env
72+
# (set QSAR_TOOLBOX_API_URL in .env)
73+
74+
# 3) run
75+
poetry run uvicorn src.api.server:app --reload --port 8001
76+
77+
# 4) verify
78+
curl -s http://localhost:8001/health | jq .
79+
curl -s http://localhost:8001/mcp \
80+
-H "Content-Type: application/json" \
81+
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}' | jq .
82+
```
83+
6484
## Quick start
6585

6686
```bash

0 commit comments

Comments
 (0)