{"id":"c1fe673d-f5d7-4057-a70e-c9fa167bd740","shortId":"bQ6p8t","kind":"skill","title":"brevo","tagline":"Brevo integration. Manage Persons, Organizations, Deals, Leads, Pipelines, Users and more. Use when the user wants to interact with Brevo data.","description":"# Brevo\n\nBrevo is a marketing automation and CRM platform. It's used by businesses, especially small to medium-sized ones, to manage email marketing, SMS campaigns, and customer relationships.\n\nOfficial docs: https://developers.brevo.com/\n\n## Brevo Overview\n\n- **Email Campaigns**\n  - **Email Campaign**\n- **SMS Campaigns**\n  - **SMS Campaign**\n- **Contacts**\n  - **Contact**\n  - **Contact Attributes**\n- **Lists**\n  - **List**\n- **Transactions**\n- **Templates**\n  - **Email Template**\n  - **SMS Template**\n\nUse action names and parameters as needed.\n\n## Working with Brevo\n\nThis skill uses the Membrane CLI to interact with Brevo. 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 Brevo\n\nUse `membrane connection ensure` to find or create a connection by app URL or domain:\n\n```bash\nmembrane connection ensure \"https://app.brevo.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 Contacts | list-contacts | Get all contacts with optional filtering |\n| List Deals | list-deals | Get all deals with optional filtering |\n| List Companies | list-companies | Get all companies with optional filtering |\n| List Tasks | list-tasks | Get all tasks with optional filtering |\n| List Lists | list-lists | Get all contact lists |\n| Get Contact | get-contact | Get details of a specific contact by email, ID, or external ID |\n| Get Deal | get-deal | Get details of a specific deal |\n| Get Company | get-company | Get details of a specific company |\n| Get Task | get-task | Get details of a specific task |\n| Get List | get-list | Get details of a specific contact list |\n| Create Contact | create-contact | Create a new contact in Brevo |\n| Create Deal | create-deal | Create a new deal in Brevo CRM |\n| Create Company | create-company | Create a new company in Brevo CRM |\n| Create Task | create-task | Create a new task in Brevo CRM |\n| Create List | create-list | Create a new contact list |\n| Update Contact | update-contact | Update an existing contact's information |\n| Update Deal | update-deal | Update an existing deal |\n| Update Company | update-company | Update an existing company |\n| Update Task | update-task | Update an existing task |\n| Delete Contact | delete-contact | Delete a contact from Brevo |\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 Brevo 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":["brevo","application","skills","membranedev","agent-skills","claude-code-skill","claude-skills","membrane"],"capabilities":["skill","source-membranedev","skill-brevo","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/brevo","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.464","qualityRationale":"deterministic score 0.46 from registry signals: · indexed on github topic:agent-skills · 29 github stars · SKILL.md body (7,313 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-04-28T13:00:05.185Z","embedding":null,"createdAt":"2026-04-18T22:29:24.997Z","updatedAt":"2026-04-28T13:00:05.185Z","lastSeenAt":"2026-04-28T13:00:05.185Z","tsv":"'/path/to/endpoint':898 '10':552,963 '123':971 '1b':316 '2':315,385 '30':354 'accept':578,924 'action':79,387,403,408,467,492,529,544,559,577,585,810,813,825,849,987,1013,1025,1034 'add':199,917 'adjust':223 'agent':210,392,481 'ai':480 'alway':556,974 'api':416,864,1029,1044,1056 'app':246,290,293,439,981 'app.brevo.com':254 'append':871 'application/json':925,943 'as-i':948 'ask':176,1052 'attribut':69 'auth':115,992,1068 'authent':100,138,151,259,414,422,426,494,884 'author':155,174 'autom':28 'automat':104,304,870 'avail':166,848 'base':873 'bash':132,139,195,250,336,542,811,823,893 'best':228,972 'bodi':929,937,947 'brevo':1,2,21,23,24,56,87,97,234,714,725,737,749,808,863 'browser':149,184,262,497 'build':329,366,1010 'built':303,459,986,990,1033 'built-in':989 'burn':999 'busi':36 'call':1030,1045 'campaign':49,59,61,63,65 'case':855,1041 'chang':358 'check':506,521 'claud':212 'cli':93,119,123 'client':386 'clientact':398 'clientaction.agentinstructions':475 'clientaction.description':443 'clientaction.type':404 'clientaction.uiurl':452 'clientnam':143 'code':189 'codex':214 'command':170,203 'common':899 'communic':1004 'compani':612,615,618,671,674,680,728,731,735,782,785,789 'complet':191,198,258,465,490 'configur':513 'connect':232,237,244,252,268,278,308,320,326,339,377,410,429,441,502,547,566,816,828,896,1062 'connectionid':546,815,827 'connector':301 'consol':159 'contact':66,67,68,590,593,596,640,643,646,652,702,705,708,712,759,762,765,769,800,803,806 'contain':265 'content':941 'content-typ':940 'context':562 'correct':883 'cover':420,852 'creat':242,298,704,707,709,715,718,720,727,730,732,739,742,744,751,754,756,1060 'create-compani':729 'create-contact':706 'create-d':717 'create-list':753 'create-task':741 'credenti':102,888,1050 'crm':30,726,738,750 'custom':51,1028 'd':926 'data':22,927 'deal':7,601,604,607,660,663,669,716,719,723,773,776,780 'default':353,912 'delet':799,802,804,911 'delete-contact':801 'depend':160 'describ':400 'descript':535,572,588,902 'detail':526,648,665,676,687,698 'developers.brevo.com':55 'direct':860 'disconnect':428 'discov':1007 'doc':54 'domain':249,285 'e.g':437,493,922,960,968 'edg':1040 'either':146 'email':46,58,60,74,654 'ensur':238,253 'environ':168 'error':514,523,995 'especi':37 'etc':217,418 'exist':768,779,788,797,1024 'expir':892 'explan':447 'extern':657,980 'fail':517 'fastest':273 'field':524,840,1037 'filter':599,610,621,632 'find':240,1023 'finish':193 'flag':345,901 'focus':108 'found':295 'full':1067 'fulli':379 'g':135 'get':276,340,503,594,605,616,627,638,642,645,647,659,662,664,670,673,675,681,684,686,692,695,697,907,914 'get-compani':672 'get-contact':644 'get-deal':661 'get-list':694 'get-task':683 'h':915,923 'handl':99,996,1035,1049 'har':231 'header':885,916,920 'headless':167 'http':905 'human':445 'human-read':444 'id':269,548,570,655,658,817,829,897,970 'includ':569,886 'inform':434,771 'initi':421 'inject':881 'input':432,830 'inputschema':573 'instal':117,120,134 'instead':1063 'instruct':477 'integr':3,111 'intent':549,1015,1021 'interact':19,95,163 'json':200,208,255,342,504,553,818,821,833,931,936 'keep':359 'key':417,587,831,1057 'kind':406 'known':289 'languag':534 'latest':137 'lead':8 'less':1000 'let':1047 'lifecycl':1069 'limit':551,962 'list':70,71,545,589,592,600,603,611,614,622,625,633,634,636,637,641,693,696,703,752,755,760,1014 'list-compani':613 'list-contact':591 'list-deal':602 'list-list':635 'list-task':624 'local':1075 'logic':112 'login':141,192,197 'long':347 'long-pol':346 'longer':365 'machin':206 'machine-read':205 'make':1003 'manag':4,45,1065 'map':1038 'market':27,47 'match':287 'medium':41 'medium-s':40 'membran':92,98,122,128,140,196,236,251,501,543,812,824,866,869,894,976,982,1012,1048,1064 'membranehq/cli':136,338 'method':904,906 'miss':1046 'mode':164 'move':510 'name':80,571,586 'natur':533 'need':84,393,409,412,436,451 'never':1051 'new':267,711,722,734,746,758 'next':375 'normal':282 'npm':133 'npx':337 'oauth':415 'object':399 'offici':53 'one':43,296 'open':147,180 'openclaw':213 'option':453,476,598,609,620,631,900 'organ':6 'output':209,264,839 'outputschema':580 'overview':57 'pagin':993,1036 'paramet':82,575,822,958,966 'pass':820 'patch':910 'path':877,965 'pathparam':964,969 'person':5 'pipelin':9 'platform':31 'plumb':116 'poll':331,348,360,498 'popular':584 'post':908 'practic':973 'pre':458,985,1032 'pre-built':457,984,1031 'prefer':975 'present':474 'print':153,172 'proceed':485 'process':953 'programmat':486 'provid':431,879,983 'provide-input':430 'proxi':844,868 'put':909 'queri':550,954,956,961,1016,1018 'query-str':955 'rather':113 'raw':1043 'rawdata':944 're':425 're-authent':424 'readabl':207,446 'readi':311,323,335,376,512 'refresh':103,889 'relationship':52 'repeat':921,959,967 'replac':1017 'request':845,859,895,919,928 'requir':388,402 'respons':843 'result':368,568,835 'return':307,583 'run':127,809,814,826,1011 'search':527,530,557 'second':352 'secret':1076 'secur':1006 'see':187 'send':858,934,945 'server':1071 'server-sid':1070 'set':380,939 'setup':516 'shorthand':932 'show':468 'side':1072 'size':42 'skill':89 'skill-brevo' 'skip':312,382 'small':38 'sms':48,62,64,76 'someth':396,518 'source-membranedev' 'specif':565,651,668,679,690,701 'state':310,330,357,362,369,509 'step':314,384 'string':930,957 'talk':978 'task':623,626,629,682,685,691,740,743,747,791,794,798 'tell':370 'templat':73,75,77 'tenant':142 'termin':131 'timeout':351 'token':1001,1059 'tool':224 'topic-agent-skills' 'topic-claude-code-skill' 'topic-claude-skills' 'topic-membrane' 'topic-skills' 'transact':72 'transpar':887 'type':211,942 'ui':460 'updat':761,764,766,772,775,777,781,784,786,790,793,795 'update-compani':783 'update-contact':763 'update-d':774 'update-task':792 'url':156,175,247,280,454,874 'use':13,34,78,90,221,227,235,531,854 'user':10,16,178,257,390,411,463,472,489,1054 'valu':832 'wait':317,341,344 'want':17,539 'warp':215 'way':274 'went':519 'whether':162 'windsurf':216 'without':951 'work':85 'write':1027 'wrong':520 'x':903","prices":[{"id":"6d94d5de-27c5-4075-8aa4-54e191134298","listingId":"c1fe673d-f5d7-4057-a70e-c9fa167bd740","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:29:24.997Z"}],"sources":[{"listingId":"c1fe673d-f5d7-4057-a70e-c9fa167bd740","source":"github","sourceId":"membranedev/application-skills/brevo","sourceUrl":"https://github.com/membranedev/application-skills/tree/main/skills/brevo","isPrimary":false,"firstSeenAt":"2026-04-18T22:29:24.997Z","lastSeenAt":"2026-04-28T13:00:05.185Z"}],"details":{"listingId":"c1fe673d-f5d7-4057-a70e-c9fa167bd740","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"membranedev","slug":"brevo","github":{"repo":"membranedev/application-skills","stars":29,"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":"e862c6045d5c6dd81e868f2dc49e038df747a322","skill_md_path":"skills/brevo/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/membranedev/application-skills/tree/main/skills/brevo"},"layout":"multi","source":"github","category":"application-skills","frontmatter":{"name":"brevo","license":"MIT","description":"Brevo integration. Manage Persons, Organizations, Deals, Leads, Pipelines, Users and more. Use when the user wants to interact with Brevo data.","compatibility":"Requires network access and a valid Membrane account (Free tier supported)."},"skills_sh_url":"https://skills.sh/membranedev/application-skills/brevo"},"updatedAt":"2026-04-28T13:00:05.185Z"}}