sales
Freshworks CRM MCP Integration for OpenAI Agents SDK
Connect Freshworks CRM to OpenAI Agents SDK through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.
Connect Freshworks CRM to OpenAI Agents SDK
Attach KosmoKrator integration tools to OpenAI Agents SDK workflows through a local MCP gateway.
Start the KosmoKrator MCP gateway locally and point the OpenAI Agents SDK MCP tool at that process or wrapper. The gateway is local, scoped to this integration, and starts with
--write=deny so OpenAI Agents can inspect read-capable tools without receiving write access by default.
Freshworks CRM MCP Config for OpenAI Agents SDK
Use headless JSON commands for CI-style execution and MCP for agent tool discovery.
{
"mcpServers": {
"kosmokrator-freshworks_crm": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=freshworks_crm",
"--write=deny"
]
}
}
} Run the Gateway Manually
kosmokrator mcp:serve --integration=freshworks_crm --write=deny Why Use KosmoKrator Here
Expose only Freshworks CRM instead of a broad multi-service tool list.
Reuse credentials already configured for the KosmoKrator CLI and Lua runtime.
Start read-only, then opt into ask or allow for trusted workspaces.
Freshworks CRM Tools Visible to OpenAI Agents
OpenAI Agents sees stable MCP tool names generated from the Freshworks CRM integration catalog.
| MCP tool | Source function | Type | Description |
|---|---|---|---|
integration__freshworks_crm__freshworks_crm_list_contacts | freshworks_crm.freshworks_crm_list_contacts | Read | List contacts in Freshworks CRM. Returns paginated results with contact details including name, email, phone, and company. |
integration__freshworks_crm__freshworks_crm_get_contact | freshworks_crm.freshworks_crm_get_contact | Read | Get a single contact from Freshworks CRM by ID. Returns full contact details including custom fields. |
integration__freshworks_crm__freshworks_crm_create_contact | freshworks_crm.freshworks_crm_create_contact | Write | Create a new contact in Freshworks CRM. Provide at least a first name or last name. Email and mobile number are optional. |
integration__freshworks_crm__freshworks_crm_list_deals | freshworks_crm.freshworks_crm_list_deals | Read | List deals in Freshworks CRM. Returns paginated results with deal details. Optionally filter by deal stage. |
integration__freshworks_crm__freshworks_crm_get_deal | freshworks_crm.freshworks_crm_get_deal | Read | Get a single deal from Freshworks CRM by ID. Returns full deal details including amount, stage, associated contacts, and custom fields. |
integration__freshworks_crm__freshworks_crm_list_accounts | freshworks_crm.freshworks_crm_list_accounts | Read | List sales accounts in Freshworks CRM. Returns paginated results with account details including name, domain, and industry. |
integration__freshworks_crm__freshworks_crm_get_current_user | freshworks_crm.freshworks_crm_get_current_user | Read | Get the currently authenticated Freshworks CRM user. Useful for verifying credentials and understanding whose context the agent is operating in. |