Attio MCP Server
by Arkel-ai
Setup
Clone the repository:
git clone <repository-url> cd attio-mcpCreate and activate a virtual environment:
python -m venv venv source venv/bin/activate # On Windows: venv\Scripts\activateInstall dependencies:
pip install -r requirements.txtConfigure environment variables: Create a
.envfile in the project root directory with the following content:BASE_URL=https://api.attio.com API_KEY=your_attio_api_key_hereReplace
your_attio_api_key_herewith your actual Attio API key.
Running the Server
python main.pyThe server will run on http://0.0.0.0:8000 (or as configured in .env).
SSE transport is used by default available at http://0.0.0.0:8000/sse, you can change the transport by setting the TRANSPORT ('stdio', 'streamable-http' or 'sse', more info here).