{"id":"a76b9c6d-ec81-46ed-855b-7892d2895ec0","shortId":"Cb5MBX","kind":"skill","title":"ringcentral","tagline":"RingCentral integration. Manage Users, Persons, Organizations, Leads, Deals, Projects and more. Use when the user wants to interact with RingCentral data.","description":"# RingCentral\n\nRingCentral is a cloud-based communication and collaboration platform. It provides businesses with tools for phone calls, video conferencing, messaging, and contact center solutions. It's used by businesses of all sizes to streamline their internal and external communications.\n\nOfficial docs: https://developers.ringcentral.com/\n\n## RingCentral Overview\n\n- **Call**\n  - **Participant**\n- **Call Queue**\n- **User**\n- **Message**\n- **Task**\n\nUse action names and parameters as needed.\n\n## Working with RingCentral\n\nThis skill uses the Membrane CLI to interact with RingCentral. 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 RingCentral\n\nUse `membrane connection ensure` to find or create a connection by app URL or domain:\n\n```bash\nmembrane connection ensure \"https://ringcentral.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 Extensions | list-extensions | Returns the list of extensions in the account (users, departments, etc.) |\n| List Chats | list-chats | Returns the list of Glip chats for the current user |\n| List Messages | list-messages | Returns messages from the extension's mailbox including SMS, voicemail, and fax |\n| List Contacts | list-contacts | Returns personal contacts from the user's address book |\n| Get Extension Info | get-extension-info | Returns information about the current extension or a specific extension by ID |\n| Get Message | get-message | Returns a specific message from the message store |\n| Get Contact | get-contact | Returns a specific contact by ID |\n| Get Call Log Records | get-call-log | Returns call log records filtered by parameters. |\n| Get Meeting | get-meeting | Returns information about a specific meeting |\n| Get Account Info | get-account-info | Returns basic information about the RingCentral account |\n| Create Contact | create-contact | Creates a new personal contact in the user's address book |\n| Create Chat Post | create-chat-post | Creates a post (message) in a Glip chat |\n| Create Meeting | create-meeting | Creates a new video meeting |\n| Create Team | create-team | Creates a new Glip team and adds members |\n| Update Contact | update-contact | Updates an existing contact in the address book |\n| Delete Message | delete-message | Deletes a message from the message store |\n| Delete Contact | delete-contact | Deletes a contact from the address book |\n| Delete Meeting | delete-meeting | Deletes a scheduled meeting |\n| Send SMS | send-sms | Creates and sends a new SMS message to one or more recipients |\n| Get Active Calls | get-active-calls | Returns all active calls for the current extension |\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 RingCentral 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":["ringcentral","application","skills","membranedev","agent-skills","claude-code-skill","claude-skills","membrane"],"capabilities":["skill","source-membranedev","skill-ringcentral","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/ringcentral","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,701 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:02:39.028Z","embedding":null,"createdAt":"2026-04-18T22:53:12.979Z","updatedAt":"2026-05-18T19:02:39.028Z","lastSeenAt":"2026-05-18T19:02:39.028Z","tsv":"'/path/to/endpoint':953 '10':550,1018 '123':1026 '1b':314 '2':313,383 '30':352 'accept':576,979 'account':599,719,723,731 'action':77,385,401,406,465,490,527,542,557,575,583,865,868,880,904,1042,1068,1080,1089 'activ':850,854,858 'add':197,784,972 'address':647,746,797,821 'adjust':221 'agent':208,390,479 'ai':478 'alway':554,1029 'api':414,919,1084,1099,1111 'app':244,288,291,437,1036 'append':926 'application/json':980,998 'as-i':1003 'ask':174,1107 'auth':113,1047,1123 'authent':98,136,149,257,412,420,424,492,939 'author':153,172 'automat':102,302,925 'avail':164,903 'base':29,928 'bash':130,137,193,248,334,540,866,878,948 'basic':726 'best':226,1027 'bodi':984,992,1002 'book':648,747,798,822 'browser':147,182,260,495 'build':327,364,1065 'built':301,457,1041,1045,1088 'built-in':1044 'burn':1054 'busi':36,53 'call':41,69,71,693,698,701,851,855,859,1085,1100 'case':910,1096 'center':47 'chang':356 'chat':604,607,613,749,753,762 'check':504,519 'claud':210 'cli':91,117,121 'client':384 'clientact':396 'clientaction.agentinstructions':473 'clientaction.description':441 'clientaction.type':402 'clientaction.uiurl':450 'clientnam':141 'cloud':28 'cloud-bas':27 'code':187 'codex':212 'collabor':32 'command':168,201 'common':954 'communic':30,63,1059 'complet':189,196,256,463,488 'conferenc':43 'configur':511 'connect':230,235,242,250,266,276,306,318,324,337,375,408,427,439,500,545,564,871,883,951,1117 'connectionid':544,870,882 'connector':299 'consol':157 'contact':46,636,639,642,682,685,689,733,736,741,787,790,794,812,815,818 'contain':263 'content':996 'content-typ':995 'context':560 'correct':938 'cover':418,907 'creat':240,296,732,735,737,748,752,755,763,766,768,773,776,778,837,1115 'create-chat-post':751 'create-contact':734 'create-meet':765 'create-team':775 'credenti':100,943,1105 'current':616,660,862 'custom':1083 'd':981 'data':22,982 'deal':9 'default':351,967 'delet':799,802,804,811,814,816,823,826,828,966 'delete-contact':813 'delete-meet':825 'delete-messag':801 'depart':601 'depend':158 'describ':398 'descript':533,570,586,957 'detail':524 'developers.ringcentral.com':66 'direct':915 'disconnect':426 'discov':1062 'doc':65 'domain':247,283 'e.g':435,491,977,1015,1023 'edg':1095 'either':144 'ensur':236,251 'environ':166 'error':512,521,1050 'etc':215,416,602 'exist':793,1079 'expir':947 'explan':445 'extens':588,591,596,627,650,654,661,665,863 'extern':62,1035 'fail':515 'fastest':271 'fax':634 'field':522,895,1092 'filter':704 'find':238,1078 'finish':191 'flag':343,956 'focus':106 'found':293 'full':1122 'fulli':377 'g':133 'get':274,338,501,649,653,668,671,681,684,692,697,707,710,718,722,849,853,962,969 'get-account-info':721 'get-active-cal':852 'get-call-log':696 'get-contact':683 'get-extension-info':652 'get-meet':709 'get-messag':670 'glip':612,761,781 'h':970,978 'handl':97,1051,1090,1104 'har':229 'header':940,971,975 'headless':165 'http':960 'human':443 'human-read':442 'id':267,546,568,667,691,872,884,952,1025 'includ':567,630,941 'info':651,655,720,724 'inform':432,657,713,727 'initi':419 'inject':936 'input':430,885 'inputschema':571 'instal':115,118,132 'instead':1118 'instruct':475 'integr':3,109 'intent':547,1070,1076 'interact':19,93,161 'intern':60 'json':198,206,253,340,502,551,873,876,888,986,991 'keep':357 'key':415,585,886,1112 'kind':404 'known':287 'languag':532 'latest':135 'lead':8 'less':1055 'let':1102 'lifecycl':1124 'limit':549,1017 'list':543,587,590,594,603,606,610,618,621,635,638,1069 'list-chat':605 'list-contact':637 'list-extens':589 'list-messag':620 'local':1130 'log':694,699,702 'logic':110 'login':139,190,195 'long':345 'long-pol':344 'longer':363 'machin':204 'machine-read':203 'mailbox':629 'make':1058 'manag':4,1120 'map':1093 'match':285 'meet':708,711,717,764,767,772,824,827,831 'member':785 'membran':90,96,120,126,138,194,234,249,499,541,867,879,921,924,949,1031,1037,1067,1103,1119 'membranehq/cli':134,336 'messag':44,74,619,622,624,669,672,676,679,758,800,803,806,809,843 'method':959,961 'miss':1101 'mode':162 'move':508 'name':78,569,584 'natur':531 'need':82,391,407,410,434,449 'never':1106 'new':265,739,770,780,841 'next':373 'normal':280 'npm':131 'npx':335 'oauth':413 'object':397 'offici':64 'one':294,845 'open':145,178 'openclaw':211 'option':451,474,955 'organ':7 'output':207,262,894 'outputschema':578 'overview':68 'pagin':1048,1091 'paramet':80,573,706,877,1013,1021 'particip':70 'pass':875 'patch':965 'path':932,1020 'pathparam':1019,1024 'person':6,641,740 'phone':40 'platform':33 'plumb':114 'poll':329,346,358,496 'popular':582 'post':750,754,757,963 'practic':1028 'pre':456,1040,1087 'pre-built':455,1039,1086 'prefer':1030 'present':472 'print':151,170 'proceed':483 'process':1008 'programmat':484 'project':10 'provid':35,429,934,1038 'provide-input':428 'proxi':899,923 'put':964 'queri':548,1009,1011,1016,1071,1073 'query-str':1010 'queue':72 'rather':111 'raw':1098 'rawdata':999 're':423 're-authent':422 'readabl':205,444 'readi':309,321,333,374,510 'recipi':848 'record':695,703 'refresh':101,944 'repeat':976,1014,1022 'replac':1072 'request':900,914,950,974,983 'requir':386,400 'respons':898 'result':366,566,890 'return':305,581,592,608,623,640,656,673,686,700,712,725,856 'ringcentr':1,2,21,23,24,67,85,95,232,730,918 'ringcentral.com':252 'run':125,864,869,881,1066 'schedul':830 'search':525,528,555 'second':350 'secret':1131 'secur':1061 'see':185 'send':832,835,839,913,989,1000 'send-sm':834 'server':1126 'server-sid':1125 'set':378,994 'setup':514 'shorthand':987 'show':466 'side':1127 'size':56 'skill':87 'skill-ringcentral' 'skip':310,380 'sms':631,833,836,842 'solut':48 'someth':394,516 'source-membranedev' 'specif':563,664,675,688,716 'state':308,328,355,360,367,507 'step':312,382 'store':680,810 'streamlin':58 'string':985,1012 'talk':1033 'task':75 'team':774,777,782 'tell':368 'tenant':140 'termin':129 'timeout':349 'token':1056,1114 'tool':38,222 'topic-agent-skills' 'topic-claude-code-skill' 'topic-claude-skills' 'topic-membrane' 'topic-skills' 'transpar':942 'type':209,997 'ui':458 'updat':786,789,791 'update-contact':788 'url':154,173,245,278,452,929 'use':13,51,76,88,219,225,233,529,909 'user':5,16,73,176,255,388,409,461,470,487,600,617,645,744,1109 'valu':887 'video':42,771 'voicemail':632 'wait':315,339,342 'want':17,537 'warp':213 'way':272 'went':517 'whether':160 'windsurf':214 'without':1006 'work':83 'write':1082 'wrong':518 'x':958","prices":[{"id":"4dd671dd-8fea-407a-89d0-ec0c1a3aee98","listingId":"a76b9c6d-ec81-46ed-855b-7892d2895ec0","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:53:12.979Z"}],"sources":[{"listingId":"a76b9c6d-ec81-46ed-855b-7892d2895ec0","source":"github","sourceId":"membranedev/application-skills/ringcentral","sourceUrl":"https://github.com/membranedev/application-skills/tree/main/skills/ringcentral","isPrimary":false,"firstSeenAt":"2026-04-18T22:53:12.979Z","lastSeenAt":"2026-05-18T19:02:39.028Z"}],"details":{"listingId":"a76b9c6d-ec81-46ed-855b-7892d2895ec0","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"membranedev","slug":"ringcentral","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":"7bf87160785c024a4154af5d78431ec10683dcd1","skill_md_path":"skills/ringcentral/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/membranedev/application-skills/tree/main/skills/ringcentral"},"layout":"multi","source":"github","category":"application-skills","frontmatter":{"name":"ringcentral","license":"MIT","description":"RingCentral integration. Manage Users, Persons, Organizations, Leads, Deals, Projects and more. Use when the user wants to interact with RingCentral data.","compatibility":"Requires network access and a valid Membrane account (Free tier supported)."},"skills_sh_url":"https://skills.sh/membranedev/application-skills/ringcentral"},"updatedAt":"2026-05-18T19:02:39.028Z"}}