loading…
Search for a command to run...
loading…
Invoice Generator AI - MCP server providing AI-powered tools and automation by MEOK AI Labs
Invoice Generator AI - MCP server providing AI-powered tools and automation by MEOK AI Labs
MCP server for invoice generator ai mcp operations
Invoice Generator Ai MCP provides AI-powered tools via the Model Context Protocol (MCP).
| Tool | Description |
|---|---|
generate_invoice |
Generate a professional invoice. Each item needs 'description', 'qty', and 'pric |
calculate_totals |
Calculate subtotal, tax, discount, and grand total for a list of line items. |
validate_invoice |
Validate an invoice dict for required fields, correct math, and common errors. |
list_templates |
List all available invoice templates with their details. |
pip install meok-invoice-generator-ai-mcp
Add to your Claude Desktop MCP config (claude_desktop_config.json):
{
"mcpServers": {
"invoice-generator-ai": {
"command": "python",
"args": ["-m", "meok_invoice_generator_ai_mcp.server"]
}
}
}
from mcp.server.fastmcp import FastMCP
# This server exposes 4 tool(s) via MCP
# See server.py for full implementation
MIT © MEOK AI Labs
Add this to claude_desktop_config.json and restart Claude Desktop.
{
"mcpServers": {
"invoice-generator-ai-mcp": {
"command": "npx",
"args": []
}
}
}