Cavyro - Agentic CRM
Cavyro is an agentic CRM, wired into the place your customers already message you.
От сообщества: Добавлен пользователем или импортирован; проверьте владельца перед подключениемРаботаетНужен API-ключRU / СНГБесплатноТолько чтение
Что умеет
- Describe Resource: Introspect the CRM. Call with no resource to list all resources and global actions. Call with a resource slug to learn its filters, sort fields, supported operations, and related pe
- Query Resources: List records of a resource with optional filters, sort, pagination, and custom field filters. Call describe_resource first to learn valid filter and sort keys. limit defaults to 10 pe
- Get Resource: Fetch a single record of a resource by its numeric ID.
Какие данные видит
Нужен ли аккаунт
Нужен API-ключ из настроек сервиса
Cavyro is an agentic CRM, wired into the place your customers already message you. Telegram.
Pipelines, deals, meetings, automations and reporting. Your team runs it from the app or from Telegram. Your agents run it headless over MCP.
Список инструментов сервера (9)
Технические названия из tools/list. Нужны только разработчикам.
| describe_resource | Introspect the CRM. Call with no resource to list all resources and global actions. Call with a resource slug to learn its filters, sort fields, supported operations, and related perform_action slugs. Describe a resource before querying or mutating it when unsure of its fields, filters, or actions. |
| query_resources | List records of a resource with optional filters, sort, pagination, and custom field filters. Call describe_resource first to learn valid filter and sort keys. limit defaults to 10 per page (max 100). |
| get_resource | Fetch a single record of a resource by its numeric ID. |
| create_resource | Create a record of a resource. attributes is an object of field values. To set custom fields, nest a `custom_fields` object keyed by numeric definition id inside attributes (e.g. { custom_fields: { "12": "Low" } }); discover ids and required fields by querying the custom_field_definition resource filtered by entity (Deal | Contact | Company). |
| update_resource | Update a record of a resource by ID. attributes contains only the fields to change. To set custom fields, nest a `custom_fields` object keyed by numeric definition id inside attributes (e.g. { custom_fields: { "12": "Low" } }). |
| delete_resource | Archive, restore, or permanently delete a record. mode=discard archives (soft delete), restore un-archives, destroy permanently deletes. |
| search | Omnibox search across deals, contacts, companies, teams, groups, members, and saved reports. Returns top matches per type. |
| perform_action | Execute a specialized (non-CRUD) action by slug, such as move_deal, link_contact_company, bulk operations, comments, membership changes, reports, or global reads. Discover available actions and their params via describe_resource. |
| load_guidance | Load step-by-step workflow guidance for one or more topics (ids come from a resource's related_guidance or describe_resource's guidance list). Covers create flows, required custom fields, activity feed vs calendar, multi-turn continuation, and which features exist only in the web app (topic 'product-surface'). Call it before composing a create/update you are unsure about, or before telling the user something is impossible. |