Pennylane
Pennylane — French accounting and finance for SMBs and their accountants: customer and supplier invoices, customers, suppliers, products, ledger entries and bank transactions. REST API v2, bearer token.
7 天免费 · 无需信用卡 · EU 托管
问 Pennylane 任何事
通过 AnythingMCP 对 Pennylane 试一个真实提示 — Claude 调用工具并返回答案。在你的消息上按 Enter 即可在 Cloud 安装。
在 Cloud 上安装 PennylaneClaude 是 AI,可能会出错。请核对回答。
2 分钟设置
- 1在 cloud.anythingmcp.com 开始免费试用。
- 2在连接器商店点击 Pennylane。提示时粘贴凭据。
- 3生成 MCP API 密钥,将 AI 客户端指向生成的 MCP URL。
配置 Pennylane
直接来自连接器定义:在哪里获取凭据、需要哪些权限,以及该适配器调用的是哪个 API。 由连接器作者以英文提供。
Getting a token
- Sign in to Pennylane and open Paramètres → Intégrations → API (Settings → Integrations → API).
- Create a personal access token and put it in
PENNYLANE_API_TOKEN. The token is scoped to one company (entreprise); an accountant handling several clients needs one connector per client.
This adapter targets API v2 at https://app.pennylane.com/api/external/v2. Pennylane's v1 is still served but is being wound down, and its pagination and field names differ — if you find a v1 example online, it will not work here.
Cursor pagination. v2 returns next_cursor; pass it back as cursor to get the following page. There is no page number, and computing an offset is not possible.
Customer vs supplier invoices. customer_invoices are what you issue; supplier_invoices are what you receive. Both carry currency_amount (in the document's currency) and amount (in the company's), which are not the same number for a foreign-currency invoice.
Filters are a JSON array, e.g. filter=[{"field":"date","operator":"gteq","value":"2026-01-01"}]. Operators include eq, not_eq, gt, gteq, lt, lteq, cont and in. The tools below pass the string through verbatim so the full grammar stays available.
Amounts are strings, to avoid float rounding. Parse them; do not do arithmetic on the raw JSON in a prompt.
Cloud reachability: app.pennylane.com is public with a valid certificate.