Freshdesk Automation via Rube MCP
Selective Reading Rule
Start with:
references/senior-master-standard.md
references/usage-routing.md
references/quality-checklist.md
Then load only the inherited docs, scripts, assets, or examples that match the user's actual task.
Automate Freshdesk customer support workflows including ticket management, contact and company operations, notes, replies, and ticket search through Composio's Freshdesk toolkit.
Prerequisites
- Rube MCP must be connected (RUBE_SEARCH_TOOLS available)
- Active Freshdesk connection via
RUBE_MANAGE_CONNECTIONS with toolkit freshdesk
- Always call
RUBE_SEARCH_TOOLS first to get current tool schemas
Setup
Get Rube MCP: Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works.
- Verify Rube MCP is available by confirming
RUBE_SEARCH_TOOLS responds
- Call
RUBE_MANAGE_CONNECTIONS with toolkit freshdesk
- If connection is not ACTIVE, follow the returned auth link to complete Freshdesk authentication
- Confirm connection status shows ACTIVE before running any workflows
Core Workflows
1. Create and Manage Tickets
When to use: User wants to create a new support ticket, update an existing ticket, or view ticket details.
Tool sequence:
FRESHDESK_SEARCH_CONTACTS - Find requester by email to get requester_id [Optional]
FRESHDESK_LIST_TICKET_FIELDS - Check available custom fields and statuses [Optional]
FRESHDESK_CREATE_TICKET - Create a new ticket with subject, description, requester info [Required]
FRESHDESK_UPDATE_TICKET - Modify ticket status, priority, assignee, or other fields [Optional]
FRESHDESK_VIEW_TICKET - Retrieve full ticket details by ID [Optional]
Key parameters for FRESHDESK_CREATE_TICKET:
subject: Ticket subject (required)
description: HTML content of the ticket (required)
email: Requester email (at least one requester identifier required)
requester_id: User ID of requester (alternative to email)
status: 2=Open, 3=Pending, 4=Resolved, 5=Closed (default 2)
priority: 1=Low, 2=Medium, 3=High, 4=Urgent (default 1)
source: 1=Email, 2=Portal, 3=Phone, 7=Chat (default 2)
responder_id: Agent ID to assign the ticket to
group_id: Group to assign the ticket to
tags: Array of tag strings
custom_fields: Object with cf_<field_name> keys
Pitfalls:
- At least one requester identifier is required:
requester_id, email, phone, facebook_id, twitter_id, or unique_external_id
- If
phone is provided without email, then name becomes mandatory
description supports HTML formatting
attachments field expects multipart/form-data format, not file paths or URLs
- Custom field keys must be prefixed with
cf_ (e.g., cf_reference_number)
- Status and priority are integers, not strings
2. Search and Filter Tickets
When to use: User wants to find tickets by status, priority, date range, agent, or custom fields.
Tool sequence:
FRESHDESK_GET_TICKETS - List tickets with simple filters (status, priority, agent) [Required]
FRESHDESK_GET_SEARCH - Advanced ticket search with query syntax [Required]
FRESHDESK_VIEW_TICKET - Get full details for specific tickets from results [Optional]
FRESHDESK_LIST_TICKET_FIELDS - Check available fields for search queries [Optional]
Key parameters for FRESHDESK_GET_TICKETS:
status: Filter by status integer (2=Open, 3=Pending, 4=Resolved, 5=Closed)
priority: Filter by priority integer (1-4)
agent_id: Filter by assigned agent
requester_id: Filter by requester
email: Filter by requester email
created_since: ISO 8601 timestamp
page / per_page: Pagination (default 30 per page)
sort_by / sort_order: Sort field and direction
Key parameters for FRESHDESK_GET_SEARCH:
query: Query string like "status:2 AND priority:3" or "(created_at:>'2024-01-01' AND tag:'urgent')"
page: Page number (1-10, max 300 total results)
Pitfalls:
FRESHDESK_GET_SEARCH query must be enclosed in double quotes
- Query string limited to 512 characters
- Maximum 10 pages (300 results) from search endpoints
- Date fields in queries use UTC format YYYY-MM-DD
- Use
null keyword to find tickets with empty fields (e.g., "agent_id:null")
FRESHDESK_LIST_ALL_TICKETS takes no parameters and returns all tickets (use GET_TICKETS for filtering)
3. Reply to and Add Notes on Tickets
When to use: User wants to send a reply to a customer, add internal notes, or view conversation history.
Tool sequence:
FRESHDESK_VIEW_TICKET - Verify ticket exists and check current state [Prerequisite]
FRESHDESK_REPLY_TO_TICKET - Send a public reply to the requester [Required]
FRESHDESK_ADD_NOTE_TO_TICKET - Add a private or public note [Required]
FRESHDESK_LIST_ALL_TICKET_CONVERSATIONS - View all messages and notes on a ticket [Optional]
FRESHDESK_UPDATE_CONVERSATIONS - Edit an existing note [Optional]
Key parameters for FRESHDESK_REPLY_TO_TICKET:
ticket_id: Ticket ID (integer, required)
body: Reply content, supports HTML (required)
cc_emails / bcc_emails: Additional recipients (max 50 total across to/cc/bcc)
from_email: Override sender email if multiple support emails configured
user_id: Agent ID to reply on behalf of
Key parameters for FRESHDESK_ADD_NOTE_TO_TICKET:
ticket_id: Ticket ID (integer, required)
body: Note content, supports HTML (required)
private: true for agent-only visibility, false for public (default true)
notify_emails: Only accepts agent email addresses, not external contacts
Pitfalls:
- There are two reply tools:
FRESHDESK_REPLY_TO_TICKET (more features) and FRESHDESK_REPLY_TICKET (simpler); both work
FRESHDESK_ADD_NOTE_TO_TICKET defaults to private (agent-only); set private: false for public notes
notify_emails in notes only accepts agent emails, not customer emails
- Only notes can be edited via
FRESHDESK_UPDATE_CONVERSATIONS; incoming replies cannot be edited
4. Manage Contacts and Companies
When to use: User wants to create, search, or manage customer contacts and company records.
Tool sequence:
FRESHDESK_SEARCH_CONTACTS - Search contacts by email, phone, or company [Required]
FRESHDESK_GET_CONTACTS - List contacts with filters [Optional]
FRESHDESK_IMPORT_CONTACT - Bulk import contacts from CSV [Optional]
FRESHDESK_SEARCH_COMPANIES - Search companies by custom fields [Required]
FRESHDESK_GET_COMPANIES - List all companies [Optional]
FRESHDESK_CREATE_COMPANIES - Create a new company [Optional]
FRESHDESK_UPDATE_COMPANIES - Update company details [Optional]
FRESHDESK_LIST_COMPANY_FIELDS - Check available company fields [Optional]
Key parameters for FRESHDESK_SEARCH_CONTACTS:
query: Search string like "email:'user@example.com'" (required)
page: Pagination (1-10, max 30 per page)
Key parameters for FRESHDESK_CREATE_COMPANIES:
name: Company name (required)
domains: Array of domain strings for auto-association with contacts
health_score: "Happy", "Doing okay", or "At risk"
account_tier: "Basic", "Premium", or "Enterprise"
industry: Standard industry classification
Pitfalls:
FRESHDESK_SEARCH_CONTACTS requires exact matches; partial/regex searches are not supported
FRESHDESK_SEARCH_COMPANIES cannot search by standard name field; use custom fields or created_at
- Company custom fields do NOT use the
cf_ prefix (unlike ticket custom fields)
domains on companies enables automatic contact-to-company association by email domain
- Contact search queries require string values in single quotes inside double-quoted query
Common Patterns
ID Resolution
Always resolve display values to IDs before operations:
- Requester email -> requester_id:
FRESHDESK_SEARCH_CONTACTS with "email:'user@example.com'"
- Company name -> company_id:
FRESHDESK_GET_COMPANIES and match by name (search by name not supported)
- Agent name -> agent_id: Not directly available; use agent_id from ticket responses or admin configuration
Pagination
Freshdesk uses page-based pagination:
FRESHDESK_GET_TICKETS: page (starting at 1) and per_page (max 100)
FRESHDESK_GET_SEARCH: page (1-10, 30 results per page, max 300 total)
FRESHDESK_SEARCH_CONTACTS: page (1-10, 30 per page)
FRESHDESK_LIST_ALL_TICKET_CONVERSATIONS: page and per_page (max 100)
Known Pitfalls
ID Formats
- Ticket IDs, contact IDs, company IDs, agent IDs, and group IDs are all integers
- There are no string-based IDs in Freshdesk
Rate Limits
- Freshdesk enforces per-account API rate limits based on plan tier
- Bulk operations should be paced to avoid 429 responses
- Search endpoints are limited to 300 total results (10 pages of 30)
Parameter Quirks
- Status values: 2=Open, 3=Pending, 4=Resolved, 5=Closed (integers, not strings)
- Priority values: 1=Low, 2=Medium, 3=High, 4=Urgent (integers, not strings)
- Source values: 1=Email, 2=Portal, 3=Phone, 7=Chat, 9=Feedback Widget, 10=Outbound Email
- Ticket custom fields use
cf_ prefix; company custom fields do NOT
description in tickets supports HTML formatting
- Search query strings must be in double quotes with string values in single quotes
FRESHDESK_LIST_ALL_TICKETS returns all tickets with no filter parameters
Response Structure
- Ticket details include nested objects for requester, assignee, and conversation data
- Search results are paginated with a maximum of 300 results across 10 pages
- Conversation lists include both replies and notes in chronological order
Quick Reference
| Task |
Tool Slug |
Key Params |
| Create ticket |
FRESHDESK_CREATE_TICKET |
subject, description, email, priority |
| Update ticket |
FRESHDESK_UPDATE_TICKET |
ticket_id, status, priority |
| View ticket |
FRESHDESK_VIEW_TICKET |
ticket_id |
| List tickets |
FRESHDESK_GET_TICKETS |
status, priority, page, per_page |
| List all tickets |
FRESHDESK_LIST_ALL_TICKETS |
(none) |
| Search tickets |
FRESHDESK_GET_SEARCH |
query, page |
| Reply to ticket |
FRESHDESK_REPLY_TO_TICKET |
ticket_id, body, cc_emails |
| Reply (simple) |
FRESHDESK_REPLY_TICKET |
ticket_id, body |
| Add note |
FRESHDESK_ADD_NOTE_TO_TICKET |
ticket_id, body, private |
| List conversations |
FRESHDESK_LIST_ALL_TICKET_CONVERSATIONS |
ticket_id, page |
| Update note |
FRESHDESK_UPDATE_CONVERSATIONS |
conversation_id, body |
| Search contacts |
FRESHDESK_SEARCH_CONTACTS |
query, page |
| List contacts |
FRESHDESK_GET_CONTACTS |
email, company_id, page |
| Import contacts |
FRESHDESK_IMPORT_CONTACT |
file, name_column_index, email_column_index |
| Create company |
FRESHDESK_CREATE_COMPANIES |
name, domains, industry |
| Update company |
FRESHDESK_UPDATE_COMPANIES |
company_id, name, domains |
| Search companies |
FRESHDESK_SEARCH_COMPANIES |
query, page |
| List companies |
FRESHDESK_GET_COMPANIES |
page |
| List ticket fields |
FRESHDESK_LIST_TICKET_FIELDS |
(none) |
| List company fields |
FRESHDESK_LIST_COMPANY_FIELDS |
(none) |
When to Use
This skill is applicable to execute the workflow or actions described in the overview.
Limitations
- Use this skill only when the task clearly matches the scope described above.
- Do not treat the output as a substitute for environment-specific validation, testing, or expert review.
- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.
1---2name: freshdesk-automation3description: ALWAYS use this when the request matches Freshdesk Automation: Automate Freshdesk helpdesk operations including tickets, contacts, companies, notes, and replies via Rube MCP (Composio).4---56# Freshdesk Automation via Rube MCP78## Selective Reading Rule910Start with:1112- `references/senior-master-standard.md`13- `references/usage-routing.md`14- `references/quality-checklist.md`1516Then load only the inherited docs, scripts, assets, or examples that match the user's actual task.1718Automate Freshdesk customer support workflows including ticket management, contact and company operations, notes, replies, and ticket search through Composio's Freshdesk toolkit.1920## Prerequisites2122- Rube MCP must be connected (RUBE_SEARCH_TOOLS available)23- Active Freshdesk connection via `RUBE_MANAGE_CONNECTIONS` with toolkit `freshdesk`24- Always call `RUBE_SEARCH_TOOLS` first to get current tool schemas2526## Setup2728**Get Rube MCP**: Add `https://rube.app/mcp` as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works.29301. Verify Rube MCP is available by confirming `RUBE_SEARCH_TOOLS` responds312. Call `RUBE_MANAGE_CONNECTIONS` with toolkit `freshdesk`323. If connection is not ACTIVE, follow the returned auth link to complete Freshdesk authentication334. Confirm connection status shows ACTIVE before running any workflows3435## Core Workflows3637### 1. Create and Manage Tickets3839**When to use**: User wants to create a new support ticket, update an existing ticket, or view ticket details.4041**Tool sequence**:421. `FRESHDESK_SEARCH_CONTACTS` - Find requester by email to get requester_id [Optional]432. `FRESHDESK_LIST_TICKET_FIELDS` - Check available custom fields and statuses [Optional]443. `FRESHDESK_CREATE_TICKET` - Create a new ticket with subject, description, requester info [Required]454. `FRESHDESK_UPDATE_TICKET` - Modify ticket status, priority, assignee, or other fields [Optional]465. `FRESHDESK_VIEW_TICKET` - Retrieve full ticket details by ID [Optional]4748**Key parameters for FRESHDESK_CREATE_TICKET**:49- `subject`: Ticket subject (required)50- `description`: HTML content of the ticket (required)51- `email`: Requester email (at least one requester identifier required)52- `requester_id`: User ID of requester (alternative to email)53- `status`: 2=Open, 3=Pending, 4=Resolved, 5=Closed (default 2)54- `priority`: 1=Low, 2=Medium, 3=High, 4=Urgent (default 1)55- `source`: 1=Email, 2=Portal, 3=Phone, 7=Chat (default 2)56- `responder_id`: Agent ID to assign the ticket to57- `group_id`: Group to assign the ticket to58- `tags`: Array of tag strings59- `custom_fields`: Object with `cf_<field_name>` keys6061**Pitfalls**:62- At least one requester identifier is required: `requester_id`, `email`, `phone`, `facebook_id`, `twitter_id`, or `unique_external_id`63- If `phone` is provided without `email`, then `name` becomes mandatory64- `description` supports HTML formatting65- `attachments` field expects multipart/form-data format, not file paths or URLs66- Custom field keys must be prefixed with `cf_` (e.g., `cf_reference_number`)67- Status and priority are integers, not strings6869### 2. Search and Filter Tickets7071**When to use**: User wants to find tickets by status, priority, date range, agent, or custom fields.7273**Tool sequence**:741. `FRESHDESK_GET_TICKETS` - List tickets with simple filters (status, priority, agent) [Required]752. `FRESHDESK_GET_SEARCH` - Advanced ticket search with query syntax [Required]763. `FRESHDESK_VIEW_TICKET` - Get full details for specific tickets from results [Optional]774. `FRESHDESK_LIST_TICKET_FIELDS` - Check available fields for search queries [Optional]7879**Key parameters for FRESHDESK_GET_TICKETS**:80- `status`: Filter by status integer (2=Open, 3=Pending, 4=Resolved, 5=Closed)81- `priority`: Filter by priority integer (1-4)82- `agent_id`: Filter by assigned agent83- `requester_id`: Filter by requester84- `email`: Filter by requester email85- `created_since`: ISO 8601 timestamp86- `page` / `per_page`: Pagination (default 30 per page)87- `sort_by` / `sort_order`: Sort field and direction8889**Key parameters for FRESHDESK_GET_SEARCH**:90- `query`: Query string like `"status:2 AND priority:3"` or `"(created_at:>'2024-01-01' AND tag:'urgent')"`91- `page`: Page number (1-10, max 300 total results)9293**Pitfalls**:94- `FRESHDESK_GET_SEARCH` query must be enclosed in double quotes95- Query string limited to 512 characters96- Maximum 10 pages (300 results) from search endpoints97- Date fields in queries use UTC format YYYY-MM-DD98- Use `null` keyword to find tickets with empty fields (e.g., `"agent_id:null"`)99- `FRESHDESK_LIST_ALL_TICKETS` takes no parameters and returns all tickets (use GET_TICKETS for filtering)100101### 3. Reply to and Add Notes on Tickets102103**When to use**: User wants to send a reply to a customer, add internal notes, or view conversation history.104105**Tool sequence**:1061. `FRESHDESK_VIEW_TICKET` - Verify ticket exists and check current state [Prerequisite]1072. `FRESHDESK_REPLY_TO_TICKET` - Send a public reply to the requester [Required]1083. `FRESHDESK_ADD_NOTE_TO_TICKET` - Add a private or public note [Required]1094. `FRESHDESK_LIST_ALL_TICKET_CONVERSATIONS` - View all messages and notes on a ticket [Optional]1105. `FRESHDESK_UPDATE_CONVERSATIONS` - Edit an existing note [Optional]111112**Key parameters for FRESHDESK_REPLY_TO_TICKET**:113- `ticket_id`: Ticket ID (integer, required)114- `body`: Reply content, supports HTML (required)115- `cc_emails` / `bcc_emails`: Additional recipients (max 50 total across to/cc/bcc)116- `from_email`: Override sender email if multiple support emails configured117- `user_id`: Agent ID to reply on behalf of118119**Key parameters for FRESHDESK_ADD_NOTE_TO_TICKET**:120- `ticket_id`: Ticket ID (integer, required)121- `body`: Note content, supports HTML (required)122- `private`: true for agent-only visibility, false for public (default true)123- `notify_emails`: Only accepts agent email addresses, not external contacts124125**Pitfalls**:126- There are two reply tools: `FRESHDESK_REPLY_TO_TICKET` (more features) and `FRESHDESK_REPLY_TICKET` (simpler); both work127- `FRESHDESK_ADD_NOTE_TO_TICKET` defaults to private (agent-only); set `private: false` for public notes128- `notify_emails` in notes only accepts agent emails, not customer emails129- Only notes can be edited via `FRESHDESK_UPDATE_CONVERSATIONS`; incoming replies cannot be edited130131### 4. Manage Contacts and Companies132133**When to use**: User wants to create, search, or manage customer contacts and company records.134135**Tool sequence**:1361. `FRESHDESK_SEARCH_CONTACTS` - Search contacts by email, phone, or company [Required]1372. `FRESHDESK_GET_CONTACTS` - List contacts with filters [Optional]1383. `FRESHDESK_IMPORT_CONTACT` - Bulk import contacts from CSV [Optional]1394. `FRESHDESK_SEARCH_COMPANIES` - Search companies by custom fields [Required]1405. `FRESHDESK_GET_COMPANIES` - List all companies [Optional]1416. `FRESHDESK_CREATE_COMPANIES` - Create a new company [Optional]1427. `FRESHDESK_UPDATE_COMPANIES` - Update company details [Optional]1438. `FRESHDESK_LIST_COMPANY_FIELDS` - Check available company fields [Optional]144145**Key parameters for FRESHDESK_SEARCH_CONTACTS**:146- `query`: Search string like `"email:'user@example.com'"` (required)147- `page`: Pagination (1-10, max 30 per page)148149**Key parameters for FRESHDESK_CREATE_COMPANIES**:150- `name`: Company name (required)151- `domains`: Array of domain strings for auto-association with contacts152- `health_score`: "Happy", "Doing okay", or "At risk"153- `account_tier`: "Basic", "Premium", or "Enterprise"154- `industry`: Standard industry classification155156**Pitfalls**:157- `FRESHDESK_SEARCH_CONTACTS` requires exact matches; partial/regex searches are not supported158- `FRESHDESK_SEARCH_COMPANIES` cannot search by standard `name` field; use custom fields or `created_at`159- Company custom fields do NOT use the `cf_` prefix (unlike ticket custom fields)160- `domains` on companies enables automatic contact-to-company association by email domain161- Contact search queries require string values in single quotes inside double-quoted query162163## Common Patterns164165### ID Resolution166Always resolve display values to IDs before operations:167- **Requester email -> requester_id**: `FRESHDESK_SEARCH_CONTACTS` with `"email:'user@example.com'"`168- **Company name -> company_id**: `FRESHDESK_GET_COMPANIES` and match by name (search by name not supported)169- **Agent name -> agent_id**: Not directly available; use agent_id from ticket responses or admin configuration170171### Pagination172Freshdesk uses page-based pagination:173- `FRESHDESK_GET_TICKETS`: `page` (starting at 1) and `per_page` (max 100)174- `FRESHDESK_GET_SEARCH`: `page` (1-10, 30 results per page, max 300 total)175- `FRESHDESK_SEARCH_CONTACTS`: `page` (1-10, 30 per page)176- `FRESHDESK_LIST_ALL_TICKET_CONVERSATIONS`: `page` and `per_page` (max 100)177178## Known Pitfalls179180### ID Formats181- Ticket IDs, contact IDs, company IDs, agent IDs, and group IDs are all integers182- There are no string-based IDs in Freshdesk183184### Rate Limits185- Freshdesk enforces per-account API rate limits based on plan tier186- Bulk operations should be paced to avoid 429 responses187- Search endpoints are limited to 300 total results (10 pages of 30)188189### Parameter Quirks190- Status values: 2=Open, 3=Pending, 4=Resolved, 5=Closed (integers, not strings)191- Priority values: 1=Low, 2=Medium, 3=High, 4=Urgent (integers, not strings)192- Source values: 1=Email, 2=Portal, 3=Phone, 7=Chat, 9=Feedback Widget, 10=Outbound Email193- Ticket custom fields use `cf_` prefix; company custom fields do NOT194- `description` in tickets supports HTML formatting195- Search query strings must be in double quotes with string values in single quotes196- `FRESHDESK_LIST_ALL_TICKETS` returns all tickets with no filter parameters197198### Response Structure199- Ticket details include nested objects for requester, assignee, and conversation data200- Search results are paginated with a maximum of 300 results across 10 pages201- Conversation lists include both replies and notes in chronological order202203## Quick Reference204205| Task | Tool Slug | Key Params |206|------|-----------|------------|207| Create ticket | `FRESHDESK_CREATE_TICKET` | `subject`, `description`, `email`, `priority` |208| Update ticket | `FRESHDESK_UPDATE_TICKET` | `ticket_id`, `status`, `priority` |209| View ticket | `FRESHDESK_VIEW_TICKET` | `ticket_id` |210| List tickets | `FRESHDESK_GET_TICKETS` | `status`, `priority`, `page`, `per_page` |211| List all tickets | `FRESHDESK_LIST_ALL_TICKETS` | (none) |212| Search tickets | `FRESHDESK_GET_SEARCH` | `query`, `page` |213| Reply to ticket | `FRESHDESK_REPLY_TO_TICKET` | `ticket_id`, `body`, `cc_emails` |214| Reply (simple) | `FRESHDESK_REPLY_TICKET` | `ticket_id`, `body` |215| Add note | `FRESHDESK_ADD_NOTE_TO_TICKET` | `ticket_id`, `body`, `private` |216| List conversations | `FRESHDESK_LIST_ALL_TICKET_CONVERSATIONS` | `ticket_id`, `page` |217| Update note | `FRESHDESK_UPDATE_CONVERSATIONS` | `conversation_id`, `body` |218| Search contacts | `FRESHDESK_SEARCH_CONTACTS` | `query`, `page` |219| List contacts | `FRESHDESK_GET_CONTACTS` | `email`, `company_id`, `page` |220| Import contacts | `FRESHDESK_IMPORT_CONTACT` | `file`, `name_column_index`, `email_column_index` |221| Create company | `FRESHDESK_CREATE_COMPANIES` | `name`, `domains`, `industry` |222| Update company | `FRESHDESK_UPDATE_COMPANIES` | `company_id`, `name`, `domains` |223| Search companies | `FRESHDESK_SEARCH_COMPANIES` | `query`, `page` |224| List companies | `FRESHDESK_GET_COMPANIES` | `page` |225| List ticket fields | `FRESHDESK_LIST_TICKET_FIELDS` | (none) |226| List company fields | `FRESHDESK_LIST_COMPANY_FIELDS` | (none) |227228## When to Use229This skill is applicable to execute the workflow or actions described in the overview.230231## Limitations232- Use this skill only when the task clearly matches the scope described above.233- Do not treat the output as a substitute for environment-specific validation, testing, or expert review.234- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.