Content
# Aduib MCP Server
## Project Introduction
This project is an MCP (Multi-Channel Protocol) server based on FastAPI, supporting various MCP functionalities with good scalability and ease of use.
## Quick Start
1. Install the environment
```bash
pip install uv
# Or on macOS
brew install uv
# Or on Windows
choco install uv
```
2. Install dependencies
```bash
uv sync --dev
```
3. Initialize the database
```bash
uv pip install alembic
alembic -c ./alembic/alembic.ini revision --autogenerate -m "init table"
alembic -c ./alembic/alembic.ini upgrade head
```