We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/0ui-labs/agentic-workbench'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
installation.md•737 B
# Installation
## Requirements
- Python 3.11 or higher
- [uv](https://docs.astral.sh/uv/) (recommended) or pip
## Install from Source
```bash
# Clone the repository
git clone https://github.com/yourusername/agentic-workbench.git
cd agentic-workbench
# Install with uv (recommended)
uv pip install -e .
# Or with pip
pip install -e .
```
## Install for Development
```bash
# Install with development dependencies
uv pip install -e ".[dev]"
# Install pre-commit hooks
pre-commit install
```
## Verify Installation
```bash
# Check the CLI is available
awb --help
# Check version
awb --version
```
## Next Steps
- [Quick Start](quickstart.md) - Run your first task
- [Configuration](configuration.md) - Configure the workbench