instantly-mcp
MCP Server for Instantly v2 API
File Explorer
- __init__.py
- accounts.py
- analytics.py
- background_jobs.py
- campaigns.py
- common.py
- emails.py
- leads.py
- __init__.py
- accounts.py
- analytics.py
- background_jobs.py
- campaigns.py
- emails.py
- leads.py
- __init__.py
- client.py
- http_app.py
- py.typed
- server.py
- .gitignore
- Dockerfile
- LICENSE
- Procfile
- pyproject.toml
- README.md
- requirements.txt
- runtime.txt
- server.json
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
pip install
View Details ▼
pip install
Install Python packages.
pip install {{package1 package2 ...}}
Install one or more packages:
pip install {{package1 package2 ...}} {{[-U|--upgrade]}}
Upgrade all specified packages to the latest version, installing any that are not already present:
pip install {{package}}=={{version}}
Install a specific version of a package:
python
View Details ▼
python
Python language interpreter.
python
Start a REPL (interactive shell):
python {{path/to/file.py}}
Execute a specific Python file:
python -i {{path/to/file.py}}
Execute a specific Python file and start a REPL:
uvicorn
View Details ▼
uvicorn
Python ASGI HTTP Server, for asynchronous projects.
uvicorn {{import.path:app_object}}
Run Python web app:
uvicorn --host {{localhost}} --port {{8080}} {{import.path:app_object}}
Listen on port 8080 on localhost:
uvicorn --reload {{import.path:app_object}}
Turn on live reload:
