chore: add ingestion server tasks and update MCP registration

This commit is contained in:
Mathias Bergqvist
2026-04-17 20:54:40 +02:00
parent e98bb2ba65
commit d084af1af0
2 changed files with 22 additions and 1 deletions

View File

@@ -73,3 +73,24 @@ tasks:
curl -s -X POST http://localhost:${SUPERVISOR_PORT:-3200}/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}' | jq .
ingestion:build:
desc: Build ingestion server binary
cmds:
- go build -o bin/ingestion-server ./cmd/server
dir: ingestion
ingestion:dev:
desc: Run ingestion server in development mode
env:
INGEST_BRAIN_DIR: "{{.ROOT_DIR}}/brain"
INGEST_PORT: "3300"
cmds:
- go run ./cmd/server
dir: ingestion
ingestion:test:
desc: Run ingestion tests
cmds:
- go test ./... -v
dir: ingestion