Agent for interacting with Owncast API
Project description
Owncast Agent - A2A | AG-UI | MCP
Version: 0.1.7
Overview
Owncast Agent MCP Server + A2A Agent
Agent for interacting with Owncast API
This repository is actively maintained - Contributions are welcome!
MCP
Using as an MCP Server
The MCP Server can be run in two modes: stdio (for local testing) or http (for networked access).
Environment Variables
OWNCAST_URL: The URL of the target service.OWNCAST_TOKEN: The API token or access token.
Run in stdio mode (default):
export OWNCAST_URL="http://localhost:8080"
export OWNCAST_TOKEN="your_token"
owncast-mcp --transport "stdio"
Run in HTTP mode:
export OWNCAST_URL="http://localhost:8080"
export OWNCAST_TOKEN="your_token"
owncast-mcp --transport "http" --host "0.0.0.0" --port "8000"
A2A Agent
Run A2A Server
export OWNCAST_URL="http://localhost:8080"
export OWNCAST_TOKEN="your_token"
owncast-agent --provider openai --model-id gpt-4o --api-key sk-...
Docker
Build
docker build -t owncast-agent .
Run MCP Server
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:latest
Deploy with Docker Compose
services:
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
Configure mcp.json for AI Integration (e.g. Claude Desktop)
{
"mcpServers": {
"owncast": {
"command": "uv",
"args": [
"run",
"--with",
"owncast-agent",
"owncast-mcp"
],
"env": {
"OWNCAST_URL": "http://your-service:8080",
"OWNCAST_TOKEN": "your_token"
}
}
}
}
Install Python Package
python -m pip install owncast-agent
uv pip install owncast-agent
Repository Owners
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file owncast_agent-0.1.7.tar.gz.
File metadata
- Download URL: owncast_agent-0.1.7.tar.gz
- Upload date:
- Size: 24.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
be094b21d324994348dbcf9c9f86a753348979ec147327ac65b961b4f1c6820c
|
|
| MD5 |
888161629f09773b8764662f480acaeb
|
|
| BLAKE2b-256 |
eb21de7aaccc5162bbc26e541e34e218f0d84bb474b5b7501c5ba1b3afbd2407
|
File details
Details for the file owncast_agent-0.1.7-py3-none-any.whl.
File metadata
- Download URL: owncast_agent-0.1.7-py3-none-any.whl
- Upload date:
- Size: 27.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7c41df13970ed016a6560dd968de9399b488a377d97c82e8d7a5e459241f9d65
|
|
| MD5 |
b51d34f032ee2bede56ab0171b0b0aef
|
|
| BLAKE2b-256 |
e32f40785b1688d1af74049dbe74a7a58fd72047f7ddf61af31fc7709e9d38c6
|