Version: 0.1.7
Owncast Agent MCP Server + A2A Agent
Agent for interacting with Owncast API
This repository is actively maintained - Contributions are welcome!
The MCP Server can be run in two modes: stdio (for local testing) or http (for networked access).
OWNCAST_URL: The URL of the target service.OWNCAST_TOKEN: The API token or access token.
export OWNCAST_URL="http://localhost:8080"
export OWNCAST_TOKEN="your_token"
owncast-mcp --transport "stdio"export OWNCAST_URL="http://localhost:8080"
export OWNCAST_TOKEN="your_token"
owncast-mcp --transport "http" --host "0.0.0.0" --port "8000"export OWNCAST_URL="http://localhost:8080"
export OWNCAST_TOKEN="your_token"
owncast-agent --provider openai --model-id gpt-4o --api-key sk-...docker build -t owncast-agent .docker run -d \
--name owncast-agent \
-p 8000:8000 \
-e TRANSPORT=http \
-e OWNCAST_URL="http://your-service:8080" \
-e OWNCAST_TOKEN="your_token" \
knucklessg1/owncast-agent:latestservices:
owncast-agent:
image: knucklessg1/owncast-agent:latest
environment:
- HOST=0.0.0.0
- PORT=8000
- TRANSPORT=http
- OWNCAST_URL=http://your-service:8080
- OWNCAST_TOKEN=your_token
ports:
- 8000:8000{
"mcpServers": {
"owncast": {
"command": "uv",
"args": [
"run",
"--with",
"owncast-agent",
"owncast-mcp"
],
"env": {
"OWNCAST_URL": "http://your-service:8080",
"OWNCAST_TOKEN": "your_token"
}
}
}
}python -m pip install owncast-agentuv pip install owncast-agent