INDIVIDUAL MCP TOOL
invoices_get_forward_link
Return a mailto: link with the invoice's PDF link in the body, ready to forward to a client or colleague.
LIVE ENDPOINT
https://mcp.invoflux.com/mcp
Connect to this endpoint to inspect the live schema for invoices_get_forward_link and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Potential side effects detected · medium confidence · heuristic, not a guarantee.
- A tool name or description suggests a financial action.
Parent server
CONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.invoflux-mcp]
url = "https://mcp.invoflux.com/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"invoflux-mcp": {
"type": "http",
"url": "https://mcp.invoflux.com/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: invoflux-mcp
Remote MCP URL: https://mcp.invoflux.com/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"invoflux-mcp": {
"url": "https://mcp.invoflux.com/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"invoflux-mcp": {
"type": "http",
"url": "https://mcp.invoflux.com/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "invoflux-mcp",
"transport": "streamable-http",
"url": "https://mcp.invoflux.com/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
invoices_list— List invoices for a company with filters (date range, supplier name, direction received/sent, processing status, payment status paid/unpaid/overdue, currency, amount range, has_file).invoices_get— Get a single invoice by id: header fields, amounts, payment + e-Invoicing status, tags, line items, and whether a file is attached.invoices_search— Semantic search over invoices using embeddings.invoices_get_recent_activity— What changed recently: invoices collected in the last N days (default 7), broken down by source channel, plus a count of anything that failed to extract.invoices_get_download_url— Return a short-lived (5 minute) signed download URL for the invoice's PDF.transactions_list— List bank transactions across both manual and auto-synced accounts, normalized to one shape with a `source` field.transactions_get_unmatched— Return transactions that are not yet linked to an invoice (reconciliation gaps).transactions_get— Get one transaction by id and source (manual or salt_edge).