{"id":"edcefb85-f254-4018-9ad8-00c77e2c4833","shortId":"MUwR7H","kind":"skill","title":"moneybird","tagline":"Moneybird integration. Manage Contacts, LedgerAccounts, FinancialMutations. Use when the user wants to interact with Moneybird data.","description":"# Moneybird\n\nMoneybird is an online accounting software designed for small business owners and freelancers. It helps users manage invoices, expenses, banking, and VAT returns in a simple and intuitive way. The platform streamlines financial administration, making it easier for non-accountants to stay on top of their finances.\n\nOfficial docs: https://developer.moneybird.com/\n\n## Moneybird Overview\n\n- **Contact**\n- **Ledger Account**\n- **Financial Mutation**\n- **Invoice**\n  - **Invoice Line**\n- **Estimate**\n  - **Estimate Line**\n- **Recurring Sales Invoice**\n  - **Recurring Sales Invoice Line**\n- **Tax Rate**\n- **Product**\n- **Purchase Invoice**\n  - **Purchase Invoice Line**\n- **Receipt**\n- **Payment**\n- **Credit Invoice**\n  - **Credit Invoice Line**\n- **General Journal Document**\n- **Time Entry**\n\nUse action names and parameters as needed.\n\n## Working with Moneybird\n\nThis skill uses the Membrane CLI to interact with Moneybird. Membrane handles authentication and credentials refresh automatically — so you can focus on the integration logic rather than auth plumbing.\n\n### Install the CLI\n\nInstall the Membrane CLI so you can run `membrane` from the terminal:\n\n```bash\nnpm install -g @membranehq/cli@latest\n```\n\n### Authentication\n\n```bash\nmembrane login --tenant --clientName=<agentType>\n```\n\nThis will either open a browser for authentication or print an authorization URL to the console, depending on whether interactive mode is available.\n\n**Headless environments:** The command will print an authorization URL. Ask the user to open it in a browser. When they see a code after completing login, finish with:\n\n```bash\nmembrane login complete <code>\n```\n\nAdd `--json` to any command for machine-readable JSON output.\n\n**Agent Types** : claude, openclaw, codex, warp, windsurf, etc. Those will be used to adjust tooling to be used best with your harness\n\n### Connecting to Moneybird\n\nUse `membrane connection ensure` to find or create a connection by app URL or domain:\n\n```bash\nmembrane connection ensure \"https://moneybird.com\" --json\n```\nThe user completes authentication in the browser. The output contains the new connection id.\n\nThis is the fastest way to get a connection. The URL is normalized to a domain and matched against known apps. If no app is found, one is created and a connector is built automatically.\n\nIf the returned connection has `state: \"READY\"`, skip to **Step 2**.\n\n#### 1b. Wait for the connection to be ready\n\nIf the connection is in `BUILDING` state, poll until it's ready:\n\n```bash\nnpx @membranehq/cli connection get <id> --wait --json\n```\n\nThe `--wait` flag long-polls (up to `--timeout` seconds, default 30) until the state changes. Keep polling until `state` is no longer `BUILDING`.\n\nThe resulting state tells you what to do next:\n\n- **`READY`** — connection is fully set up. Skip to **Step 2**.\n- **`CLIENT_ACTION_REQUIRED`** — the user or agent needs to do something. The `clientAction` object describes the required action:\n  - `clientAction.type` — the kind of action needed:\n    - `\"connect\"` — user needs to authenticate (OAuth, API key, etc.). This covers initial authentication and re-authentication for disconnected connections.\n    - `\"provide-input\"` — more information is needed (e.g. which app to connect to).\n  - `clientAction.description` — human-readable explanation of what's needed.\n  - `clientAction.uiUrl` (optional) — URL to a pre-built UI where the user can complete the action. Show this to the user when present.\n  - `clientAction.agentInstructions` (optional) — instructions for the AI agent on how to proceed programmatically.\n\n  After the user completes the action (e.g. authenticates in the browser), poll again with `membrane connection get <id> --json` to check if the state moved to `READY`.\n\n- **`CONFIGURATION_ERROR`** or **`SETUP_FAILED`** — something went wrong. Check the `error` field for details.\n\n### Searching for actions\n\nSearch using a natural language description of what you want to do:\n\n```bash\nmembrane action list --connectionId=CONNECTION_ID --intent \"QUERY\" --limit 10 --json\n```\n\nYou should always search for actions in the context of a specific connection.\n\nEach result includes `id`, `name`, `description`, `inputSchema` (what parameters the action accepts), and `outputSchema` (what it returns).\n\n## Popular actions\n\n| Name | Key | Description |\n| --- | --- | --- |\n| List Sales Invoices | list-sales-invoices | List all sales invoices in an administration |\n| List Contacts | list-contacts | List all contacts in an administration |\n| List Products | list-products | List all products in an administration |\n| List Financial Accounts | list-financial-accounts | List all financial accounts (bank accounts, cash, etc.) in an administration |\n| List Tax Rates | list-tax-rates | List all tax rates in an administration |\n| List Ledger Accounts | list-ledger-accounts | List all ledger accounts in an administration |\n| List Administrations | list-administrations | List all administrations the authenticated user has access to |\n| Get Sales Invoice | get-sales-invoice | Get a single sales invoice by ID |\n| Get Contact | get-contact | Get a single contact by ID |\n| Get Product | get-product | Get a single product by ID |\n| Create Sales Invoice | create-sales-invoice | Create a new sales invoice |\n| Create Contact | create-contact | Create a new contact in an administration |\n| Create Product | create-product | Create a new product |\n| Update Sales Invoice | update-sales-invoice | Update an existing sales invoice (only draft invoices can be fully updated) |\n| Update Contact | update-contact | Update an existing contact |\n| Update Product | update-product | Update an existing product |\n| Delete Sales Invoice | delete-sales-invoice | Delete a sales invoice (only draft invoices can be deleted) |\n| Delete Contact | delete-contact | Delete a contact by ID |\n| Delete Product | delete-product | Delete a product |\n| Send Sales Invoice | send-sales-invoice | Send a sales invoice to the contact via email or other delivery method |\n\n### Running actions\n\n```bash\nmembrane action run <actionId> --connectionId=CONNECTION_ID --json\n```\n\nTo pass JSON parameters:\n\n```bash\nmembrane action run <actionId> --connectionId=CONNECTION_ID --input '{\"key\": \"value\"}' --json\n```\n\nThe result is in the `output` field of the response.\n\n\n### Proxy requests\n\nWhen the available actions don't cover your use case, you can send requests directly to the Moneybird API through Membrane's proxy. Membrane automatically appends the base URL to the path you provide and injects the correct authentication headers — including transparent credential refresh if they expire.\n\n```bash\nmembrane request CONNECTION_ID /path/to/endpoint\n```\n\nCommon options:\n\n| Flag | Description |\n|------|-------------|\n| `-X, --method` | HTTP method (GET, POST, PUT, PATCH, DELETE). Defaults to GET |\n| `-H, --header` | Add a request header (repeatable), e.g. `-H \"Accept: application/json\"` |\n| `-d, --data` | Request body (string) |\n| `--json` | Shorthand to send a JSON body and set `Content-Type: application/json` |\n| `--rawData` | Send the body as-is without any processing |\n| `--query` | Query-string parameter (repeatable), e.g. `--query \"limit=10\"` |\n| `--pathParam` | Path parameter (repeatable), e.g. `--pathParam \"id=123\"` |\n\n\n## Best practices\n\n- **Always prefer Membrane to talk with external apps** — Membrane provides pre-built actions with built-in auth, pagination, and error handling. This will burn less tokens and make communication more secure\n- **Discover before you build** — run `membrane action list --intent=QUERY` (replace QUERY with your intent) to find existing actions before writing custom API calls. Pre-built actions handle pagination, field mapping, and edge cases that raw API calls miss.\n- **Let Membrane handle credentials** — never ask the user for API keys or tokens. Create a connection instead; Membrane manages the full Auth lifecycle server-side with no local secrets.","tags":["moneybird","application","skills","membranedev","agent-skills","claude-code-skill","claude-skills","membrane"],"capabilities":["skill","source-membranedev","skill-moneybird","topic-agent-skills","topic-claude-code-skill","topic-claude-skills","topic-membrane","topic-skills"],"categories":["application-skills"],"synonyms":[],"warnings":[],"endpointUrl":"https://skills.sh/membranedev/application-skills/moneybird","protocol":"skill","transport":"skills-sh","auth":{"type":"none","details":{"cli":"npx skills add membranedev/application-skills","source_repo":"https://github.com/membranedev/application-skills","install_from":"skills.sh"}},"qualityScore":"0.467","qualityRationale":"deterministic score 0.47 from registry signals: · indexed on github topic:agent-skills · 35 github stars · SKILL.md body (7,975 chars)","verified":false,"liveness":"unknown","lastLivenessCheck":null,"agentReviews":{"count":0,"score_avg":null,"cost_usd_avg":null,"success_rate":null,"latency_p50_ms":null,"narrative_summary":null,"summary_updated_at":null},"enrichmentModel":"deterministic:skill-github:v1","enrichmentVersion":1,"enrichedAt":"2026-05-18T19:01:45.763Z","embedding":null,"createdAt":"2026-04-18T22:46:32.498Z","updatedAt":"2026-05-18T19:01:45.763Z","lastSeenAt":"2026-05-18T19:01:45.763Z","tsv":"'/path/to/endpoint':967 '10':584,1032 '123':1040 '1b':348 '2':347,417 '30':386 'accept':610,993 'access':715 'account':23,59,74,659,663,667,669,691,695,699 'action':111,419,435,440,499,524,561,576,591,609,617,879,882,894,918,1056,1082,1094,1103 'add':231,986 'adjust':255 'administr':52,634,645,656,674,688,702,704,707,710,776 'agent':242,424,513 'ai':512 'alway':588,1043 'api':448,933,1098,1113,1125 'app':278,322,325,471,1050 'append':940 'application/json':994,1012 'as-i':1017 'ask':208,1121 'auth':147,1061,1137 'authent':132,170,183,291,446,454,458,526,712,953 'author':187,206 'automat':136,336,939 'avail':198,917 'bank':38,668 'base':942 'bash':164,171,227,282,368,574,880,892,962 'best':260,1041 'bodi':998,1006,1016 'browser':181,216,294,529 'build':361,398,1079 'built':335,491,1055,1059,1102 'built-in':1058 'burn':1068 'busi':28 'call':1099,1114 'case':924,1110 'cash':670 'chang':390 'check':538,553 'claud':244 'cli':125,151,155 'client':418 'clientact':430 'clientaction.agentinstructions':507 'clientaction.description':475 'clientaction.type':436 'clientaction.uiurl':484 'clientnam':175 'code':221 'codex':246 'command':202,235 'common':968 'communic':1073 'complet':223,230,290,497,522 'configur':545 'connect':264,269,276,284,300,310,340,352,358,371,409,442,461,473,534,579,598,885,897,965,1131 'connectionid':578,884,896 'connector':333 'consol':191 'contact':5,72,636,639,642,732,735,739,766,769,773,806,809,813,841,844,847,871 'contain':297 'content':1010 'content-typ':1009 'context':594 'correct':952 'cover':452,921 'creat':274,330,753,757,760,765,768,770,777,780,782,1129 'create-contact':767 'create-product':779 'create-sales-invoic':756 'credenti':134,957,1119 'credit':100,102 'custom':1097 'd':995 'data':17,996 'default':385,981 'delet':823,827,830,839,840,843,845,850,853,855,980 'delete-contact':842 'delete-product':852 'delete-sales-invoic':826 'deliveri':876 'depend':192 'describ':432 'descript':567,604,620,971 'design':25 'detail':558 'developer.moneybird.com':69 'direct':929 'disconnect':460 'discov':1076 'doc':68 'document':107 'domain':281,317 'draft':799,835 'e.g':469,525,991,1029,1037 'easier':55 'edg':1109 'either':178 'email':873 'ensur':270,285 'entri':109 'environ':200 'error':546,555,1064 'estim':80,81 'etc':249,450,671 'exist':795,812,821,1093 'expens':37 'expir':961 'explan':479 'extern':1049 'fail':549 'fastest':305 'field':556,909,1106 'financ':66 'financi':51,75,658,662,666 'financialmut':7 'find':272,1092 'finish':225 'flag':377,970 'focus':140 'found':327 'freelanc':31 'full':1136 'fulli':411,803 'g':167 'general':105 'get':308,372,535,717,721,724,731,734,736,742,745,747,976,983 'get-contact':733 'get-product':744 'get-sales-invoic':720 'h':984,992 'handl':131,1065,1104,1118 'har':263 'header':954,985,989 'headless':199 'help':33 'http':974 'human':477 'human-read':476 'id':301,580,602,730,741,752,849,886,898,966,1039 'includ':601,955 'inform':466 'initi':453 'inject':950 'input':464,899 'inputschema':605 'instal':149,152,166 'instead':1132 'instruct':509 'integr':3,143 'intent':581,1084,1090 'interact':14,127,195 'intuit':46 'invoic':36,77,78,85,88,94,96,101,103,623,627,631,719,723,728,755,759,764,788,792,797,800,825,829,833,836,860,864,868 'journal':106 'json':232,240,287,374,536,585,887,890,902,1000,1005 'keep':391 'key':449,619,900,1126 'kind':438 'known':321 'languag':566 'latest':169 'ledger':73,690,694,698 'ledgeraccount':6 'less':1069 'let':1116 'lifecycl':1138 'limit':583,1031 'line':79,82,89,97,104 'list':577,621,625,628,635,638,640,646,649,651,657,661,664,675,679,682,689,693,696,703,706,708,1083 'list-administr':705 'list-contact':637 'list-financial-account':660 'list-ledger-account':692 'list-product':648 'list-sales-invoic':624 'list-tax-r':678 'local':1144 'logic':144 'login':173,224,229 'long':379 'long-pol':378 'longer':397 'machin':238 'machine-read':237 'make':53,1072 'manag':4,35,1134 'map':1107 'match':319 'membran':124,130,154,160,172,228,268,283,533,575,881,893,935,938,963,1045,1051,1081,1117,1133 'membranehq/cli':168,370 'method':877,973,975 'miss':1115 'mode':196 'moneybird':1,2,16,18,19,70,119,129,266,932 'moneybird.com':286 'move':542 'mutat':76 'name':112,603,618 'natur':565 'need':116,425,441,444,468,483 'never':1120 'new':299,762,772,784 'next':407 'non':58 'non-account':57 'normal':314 'npm':165 'npx':369 'oauth':447 'object':431 'offici':67 'one':328 'onlin':22 'open':179,212 'openclaw':245 'option':485,508,969 'output':241,296,908 'outputschema':612 'overview':71 'owner':29 'pagin':1062,1105 'paramet':114,607,891,1027,1035 'pass':889 'patch':979 'path':946,1034 'pathparam':1033,1038 'payment':99 'platform':49 'plumb':148 'poll':363,380,392,530 'popular':616 'post':977 'practic':1042 'pre':490,1054,1101 'pre-built':489,1053,1100 'prefer':1044 'present':506 'print':185,204 'proceed':517 'process':1022 'product':92,647,650,653,743,746,750,778,781,785,815,818,822,851,854,857 'programmat':518 'provid':463,948,1052 'provide-input':462 'proxi':913,937 'purchas':93,95 'put':978 'queri':582,1023,1025,1030,1085,1087 'query-str':1024 'rate':91,677,681,685 'rather':145 'raw':1112 'rawdata':1013 're':457 're-authent':456 'readabl':239,478 'readi':343,355,367,408,544 'receipt':98 'recur':83,86 'refresh':135,958 'repeat':990,1028,1036 'replac':1086 'request':914,928,964,988,997 'requir':420,434 'respons':912 'result':400,600,904 'return':41,339,615 'run':159,878,883,895,1080 'sale':84,87,622,626,630,718,722,727,754,758,763,787,791,796,824,828,832,859,863,867 'search':559,562,589 'second':384 'secret':1145 'secur':1075 'see':219 'send':858,862,865,927,1003,1014 'send-sales-invoic':861 'server':1140 'server-sid':1139 'set':412,1008 'setup':548 'shorthand':1001 'show':500 'side':1141 'simpl':44 'singl':726,738,749 'skill':121 'skill-moneybird' 'skip':344,414 'small':27 'softwar':24 'someth':428,550 'source-membranedev' 'specif':597 'state':342,362,389,394,401,541 'stay':61 'step':346,416 'streamlin':50 'string':999,1026 'talk':1047 'tax':90,676,680,684 'tell':402 'tenant':174 'termin':163 'time':108 'timeout':383 'token':1070,1128 'tool':256 'top':63 'topic-agent-skills' 'topic-claude-code-skill' 'topic-claude-skills' 'topic-membrane' 'topic-skills' 'transpar':956 'type':243,1011 'ui':492 'updat':786,790,793,804,805,808,810,814,817,819 'update-contact':807 'update-product':816 'update-sales-invoic':789 'url':188,207,279,312,486,943 'use':8,110,122,253,259,267,563,923 'user':11,34,210,289,422,443,495,504,521,713,1123 'valu':901 'vat':40 'via':872 'wait':349,373,376 'want':12,571 'warp':247 'way':47,306 'went':551 'whether':194 'windsurf':248 'without':1020 'work':117 'write':1096 'wrong':552 'x':972","prices":[{"id":"7a550bfe-5e94-485a-bfec-a56d37d06be1","listingId":"edcefb85-f254-4018-9ad8-00c77e2c4833","amountUsd":"0","unit":"free","nativeCurrency":null,"nativeAmount":null,"chain":null,"payTo":null,"paymentMethod":"skill-free","isPrimary":true,"details":{"org":"membranedev","category":"application-skills","install_from":"skills.sh"},"createdAt":"2026-04-18T22:46:32.498Z"}],"sources":[{"listingId":"edcefb85-f254-4018-9ad8-00c77e2c4833","source":"github","sourceId":"membranedev/application-skills/moneybird","sourceUrl":"https://github.com/membranedev/application-skills/tree/main/skills/moneybird","isPrimary":false,"firstSeenAt":"2026-04-18T22:46:32.498Z","lastSeenAt":"2026-05-18T19:01:45.763Z"}],"details":{"listingId":"edcefb85-f254-4018-9ad8-00c77e2c4833","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"membranedev","slug":"moneybird","github":{"repo":"membranedev/application-skills","stars":35,"topics":["agent-skills","claude-code-skill","claude-skills","membrane","skills"],"license":null,"html_url":"https://github.com/membranedev/application-skills","pushed_at":"2026-04-28T08:45:44Z","description":null,"skill_md_sha":"f427c33e0c2875300c62abdea2c90b211ccf16a1","skill_md_path":"skills/moneybird/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/membranedev/application-skills/tree/main/skills/moneybird"},"layout":"multi","source":"github","category":"application-skills","frontmatter":{"name":"moneybird","license":"MIT","description":"Moneybird integration. Manage Contacts, LedgerAccounts, FinancialMutations. Use when the user wants to interact with Moneybird data.","compatibility":"Requires network access and a valid Membrane account (Free tier supported)."},"skills_sh_url":"https://skills.sh/membranedev/application-skills/moneybird"},"updatedAt":"2026-05-18T19:01:45.763Z"}}