Invompt MCP
Enables users to interact with Invompt's public invoice API to draft and create professional invoices. It provides tools for generating Invoice Markup Language (IML) YAML and processing it through various invoice templates.
README
invompt-mcp
MCP server for Invompt — the AI invoice generator.
Describe what you need, get a professional invoice. Connects your AI assistant to the Invompt API so you can create, format, and share invoices without leaving your editor.
What it does
| Component | Description |
|---|---|
Resource invompt://spec/iml/v1 |
Invoice format specification — the LLM reads this to learn how to structure invoices |
Tool create_invoice |
Creates an invoice and returns a shareable URL |
Prompt draft_invoice_iml |
Optional template that helps the LLM draft invoice data from natural language |
Get your API key
- Sign up at invompt.com
- Go to Integrations → Generate API Key
- Copy the key (starts with
inv_sk_) — it's shown once
Setup
Claude Code
claude mcp add invompt -e INVOMPT_API_KEY=inv_sk_... -- npx invompt-mcp
Claude Desktop
Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"invompt": {
"command": "npx",
"args": ["-y", "invompt-mcp"],
"env": {
"INVOMPT_API_KEY": "inv_sk_..."
}
}
}
}
Restart Claude Desktop after saving.
Cursor
Add to ~/.cursor/mcp.json (global) or .cursor/mcp.json (project):
{
"mcpServers": {
"invompt": {
"command": "npx",
"args": ["-y", "invompt-mcp"],
"env": {
"INVOMPT_API_KEY": "inv_sk_..."
}
}
}
}
VS Code (Copilot)
Add to .vscode/mcp.json:
{
"servers": {
"invompt": {
"type": "stdio",
"command": "npx",
"args": ["-y", "invompt-mcp"],
"env": {
"INVOMPT_API_KEY": "inv_sk_..."
}
}
}
}
VS Code uses
"servers", not"mcpServers".
Windsurf
Add to ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"invompt": {
"command": "npx",
"args": ["-y", "invompt-mcp"],
"env": {
"INVOMPT_API_KEY": "inv_sk_..."
}
}
}
}
Cline
Open Cline sidebar → MCP Servers → Configure, then add:
{
"mcpServers": {
"invompt": {
"command": "npx",
"args": ["-y", "invompt-mcp"],
"env": {
"INVOMPT_API_KEY": "inv_sk_..."
}
}
}
}
Amazon Q Developer
Add to ~/.aws/amazonq/mcp.json:
{
"mcpServers": {
"invompt": {
"command": "npx",
"args": ["-y", "invompt-mcp"],
"env": {
"INVOMPT_API_KEY": "inv_sk_..."
}
}
}
}
Codex (OpenAI)
Add to ~/.codex/config.toml:
[mcp_servers.invompt]
command = "npx"
args = ["-y", "invompt-mcp"]
[mcp_servers.invompt.env]
INVOMPT_API_KEY = "inv_sk_..."
Bun users
Replace npx with bunx and remove -y in any configuration above:
"command": "bunx",
"args": ["invompt-mcp"],
Usage
Once connected, ask your AI assistant:
"Create an invoice for 40 hours of web development at $150/hr for Acme Corp, due in 30 days"
The assistant reads the format spec, generates the invoice data, calls the API, and returns a link to your invoice.
How it works
You describe the invoice in plain English
→ LLM reads invompt://spec/iml/v1 to learn the format
→ LLM generates invoice data as YAML
→ LLM calls create_invoice
→ Invompt validates, renders, and stores the invoice
→ You get a shareable URL
Templates
Pass templateId to choose a look:
| Template | Description |
|---|---|
professional |
Clean business layout (default) |
minimal |
Simple, compact |
modern |
Contemporary design |
Environment variables
| Variable | Required | Description |
|---|---|---|
INVOMPT_API_KEY |
For create_invoice |
Your API key from invompt.com/integrations |
The resource and prompt work without an API key — only the tool needs one.
Development
npm install # install dependencies
npm run build # compile TypeScript
npm test # run tests
npm run dev # run from source
License
MIT — see LICENSE
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.