therealMrFunGuy/invoice-pilot
Smart invoicing with auto-chase payment reminders via API + MCP server
Platform-specific configuration:
{
"mcpServers": {
"invoice-pilot": {
"command": "npx",
"args": [
"-y",
"invoice-pilot"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
Smart invoicing service with auto-chase payment reminders. Create professional invoices, send them via email with PDF attachments, and automatically follow up on overdue payments with escalating reminders.
# Docker
docker compose up -d
# Or run directly
pip install -r requirements.txt
python server.py| Method | Endpoint | Description | |--------|----------|-------------| | POST | /invoices | Create invoice | | GET | /invoices | List invoices | | GET | /invoices/{id} | Get invoice | | PUT | /invoices/{id} | Update invoice | | DELETE | /invoices/{id} | Delete invoice | | POST | /invoices/{id}/send | Send invoice email | | POST | /invoices/{id}/mark-paid | Mark as paid | | POST | /invoices/{id}/remind | Send reminder | | GET | /invoices/{id}/pdf | Download PDF | | GET | /invoices/{id}/pay | Client payment page | | GET | /dashboard | Revenue summary | | GET | /clients | Client list |
create_invoice - Create and optionally send an invoicelist_invoices - Show all invoices with statusget_outstanding - Show unpaid invoicessend_reminder - Trigger reminder for overdue invoicemark_paid - Mark invoice as paidget_revenue_summary - Revenue and outstanding totals| Days Overdue | Level | Action | |-------------|-------|--------| | 1 | Friendly | Polite paym
Loading reviews...