Server data from the Official MCP Registry
Log hours, draft invoices and check where you stand — finance for Dutch freelancers.
Log hours, draft invoices and check where you stand — finance for Dutch freelancers.
This is a well-architected MCP server with proper authentication, clear permission scoping, and good error handling. The server requires a scoped API key and follows security best practices like using environment variables for secrets, validating input, and limiting permissions to the stated purpose. Minor code quality observations exist but do not create security vulnerabilities. Supply chain analysis found 5 known vulnerabilities in dependencies (0 critical, 5 high severity). Package verification found 1 issue.
6 files analyzed · 9 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Environment variable: PEIL_API_KEY
Environment variable: PEIL_API_URL
Add this to your MCP configuration file:
{
"mcpServers": {
"app-peil-peil-mcp": {
"env": {
"PEIL_API_KEY": "your-peil-api-key-here",
"PEIL_API_URL": "your-peil-api-url-here"
},
"args": [
"peil-mcp"
],
"command": "uvx"
}
}
}From the project's GitHub README.
mcp-name: app.peil/peil-mcp
Connect Peil to Claude (or any MCP client): log hours, draft invoices from unbilled hours, and check where you stand — from a prompt.
The server is a pure client of Peil's public API. It authenticates with a scoped API key you create in Peil under Settings → Developer (Pro).
draft_invoice only ever creates a draft — nothing is sent to your
clients. Sending is a separate tool (send_invoice) that also requires the
separate invoices:send permission on your key. A key without that
permission can never email anything on your behalf.
Reads (read)
| Tool | What it does |
|---|---|
list_clients | List your clients |
get_client_details | One client's details, incl. whether a default rate is set |
list_unbilled | Unbilled hours per client for a period |
list_invoices | List invoices, filterable by status / client |
orientation_snapshot | Outstanding / overdue / drafts / YTD position |
get_reminder_copy | Your custom reminder email copy + schedule |
Hours (timesheet:write)
| Tool | What it does |
|---|---|
log_hours | Add a timesheet entry (client default rate unless given) |
edit_hours | Edit an entry (only the fields you pass change) |
delete_hours | Delete an entry (blocked if on a sent/paid invoice) |
Clients (clients:write)
| Tool | What it does |
|---|---|
create_client / update_client / delete_client | Client CRUD (delete blocked if it has projects/sent invoices) |
Invoices (invoices:write)
| Tool | What it does |
|---|---|
draft_invoice | Draft an invoice from unbilled hours (summary / by_project / per_day) |
set_invoice_status | Change status (e.g. mark paid) — does not email anyone |
update_invoice | Edit safe fields (due date, payment date, notes) |
delete_invoice / archive_invoice | Delete (paid ones blocked) / archive |
set_reminder_copy | Write custom reminder email copy for one tone/language |
Client-facing email (invoices:send — irreversible, always confirm first)
| Tool | What it does |
|---|---|
send_invoice | Email an invoice to the client now |
schedule_send | Schedule a draft to be emailed at a future time |
cancel_scheduled_send | Cancel a scheduled send |
send_reminder | Email a payment reminder for a sent/overdue invoice |
In Peil: Settings → Developer → create a key with the permissions you want.
Start with read + Log hours + Draft invoices; leave Send invoices off
unless you truly want an assistant emailing clients. You'll paste this key into
your assistant's config as PEIL_API_KEY below.
The easy way — no clone, no install (once peil-mcp is published to PyPI):
uvx peil-mcp # runs the latest release on demand
# or, with pipx:
pipx run peil-mcp
→ Your launch command is uvx peil-mcp (or pipx run peil-mcp). Skip to
step 3. Everything below is only needed if you're
running from source (e.g. before the first release, or to hack on it).
You need Python 3.11 or newer and a local copy of this mcp-server/ folder.
Check your Python with python3 --version.
Which method? Run
which uv pipxfirst. If you already haveuv, use A — it's the least work. If not,pipx(B) gives you a clean global command. If you have neither and don't want to install tooling, the plain-venvpath (C) works with nothing but the Python that's already on your machine.
Everywhere below, replace /ABS/PATH/TO/mcp-server with the real absolute path
to this folder (run pwd inside it to get it).
uv (no install step)uv builds and runs on demand — nothing to install first:
uv run --directory /ABS/PATH/TO/mcp-server peil-mcp
→ Your launch command is: uv run --directory /ABS/PATH/TO/mcp-server peil-mcp
Don't have uv? curl -LsSf https://astral.sh/uv/install.sh | sh (macOS/Linux)
or pip install uv.
pipx (isolated global command)pipx installs the server into its own isolated environment and puts a
peil-mcp command on your PATH:
pipx install /ABS/PATH/TO/mcp-server
→ Your launch command is simply: peil-mcp
Don't have pipx? python3 -m pip install --user pipx && python3 -m pipx ensurepath.
venv + pip (works with only stock Python)No extra tooling — just the python3 you already have:
cd /ABS/PATH/TO/mcp-server
python3 -m venv .venv
.venv/bin/pip install .
→ Your launch command is: /ABS/PATH/TO/mcp-server/.venv/bin/peil-mcp
(equivalently /ABS/PATH/TO/mcp-server/.venv/bin/python -m peil_mcp).
Use a plain
pip install .(not-e/editable) for running. An editable install relies on a.pthpath hook that can silently fail to load on some setups, givingModuleNotFoundError: No module named 'peil_mcp'. Editable is only needed if you're modifying the server itself — see Local development.
The only thing that changes between assistants is where the config lives. Every MCP client needs the same three things:
PEIL_API_KEY set to the key from step 1PEIL_API_URL — only if you're pointing at a non-production
Peil (see Local development); defaults to
https://api.peil.app/api/v1.The canonical config block (used by Claude Desktop, Cursor, Windsurf, Cline, and
most others) looks like this — command + args are just your launch command
split on spaces:
{
"mcpServers": {
"peil": {
"command": "peil-mcp", // or "uv", or the venv's python path
"args": [], // e.g. ["run","--directory","/ABS/PATH/TO/mcp-server","peil-mcp"] for uv
"env": { "PEIL_API_KEY": "your-key" }
}
}
}
Edit claude_desktop_config.json
(macOS: ~/Library/Application Support/Claude/,
Windows: %APPDATA%\Claude\), add the block above, and restart Claude Desktop.
# pipx / venv (single-command launcher):
claude mcp add peil -e PEIL_API_KEY=your-key -- peil-mcp
# uv:
claude mcp add peil -e PEIL_API_KEY=your-key -- uv run --directory /ABS/PATH/TO/mcp-server peil-mcp
Anything after -- is the launch command. Verify with claude mcp get peil
(look for Status: ✔ Connected) and use /mcp in a session to reconnect.
Add the canonical block to .cursor/mcp.json (this project) or
~/.cursor/mcp.json (all projects), then enable peil in
Settings → MCP.
Add the canonical block to ~/.codeium/windsurf/mcp_config.json, then hit
Refresh in the Cascade MCP panel.
Open the extension's MCP Servers → Configure panel and add the canonical
block to cline_mcp_settings.json.
VS Code uses a slightly different shape — servers (not mcpServers) and an
explicit type — in .vscode/mcp.json:
{
"servers": {
"peil": {
"type": "stdio",
"command": "peil-mcp",
"args": [],
"env": { "PEIL_API_KEY": "your-key" }
}
}
}
Give it the same command + args + PEIL_API_KEY env. The server speaks MCP
over stdio; if a client can launch a stdio command, it can run Peil.
Once connected, try:
orientation_snapshotlog_hoursdraft_invoiceWith Send invoices left off your key, an assistant can prepare everything but physically cannot email a client — you send from Peil yourself.
Point the server at a local backend with PEIL_API_URL:
PEIL_API_URL=http://localhost:8000/api/v1 PEIL_API_KEY=your-local-key peil-mcp
If you're modifying the server, an editable install picks up your changes without reinstalling:
.venv/bin/pip install -e ".[dev]"
Tests (mocked HTTP, no backend needed — pythonpath = ["src"] in
pyproject.toml makes them independent of the install mechanism):
.venv/bin/pytest
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Web content fetching and conversion for efficient LLM usage
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.