sales
Lasso CRM MCP Integration for OpenAI Agents SDK
Connect Lasso CRM to OpenAI Agents SDK through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.
Connect Lasso 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.
Lasso CRM MCP Config for OpenAI Agents SDK
Use headless JSON commands for CI-style execution and MCP for agent tool discovery.
{
"mcpServers": {
"kosmokrator-lasso": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=lasso",
"--write=deny"
]
}
}
} Run the Gateway Manually
kosmokrator mcp:serve --integration=lasso --write=deny Why Use KosmoKrator Here
Expose only Lasso 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.
Lasso CRM Tools Visible to OpenAI Agents
OpenAI Agents sees stable MCP tool names generated from the Lasso CRM integration catalog.
| MCP tool | Source function | Type | Description |
|---|---|---|---|
integration__lasso__lasso_list_contacts | lasso.lasso_list_contacts | Read | List contacts (registrants) in Lasso CRM. Optionally filter by project ID or other criteria. Supports pagination. |
integration__lasso__lasso_get_contact | lasso.lasso_get_contact | Read | Get full details for a single contact (registrant) in Lasso CRM, including emails, phone numbers, and associated information. |
integration__lasso__lasso_create_contact | lasso.lasso_create_contact | Write | Create a new contact (registrant) in Lasso CRM. Provide at least a first name or last name, and optionally email, phone, and other details. |
integration__lasso__lasso_list_deals | lasso.lasso_list_deals | Read | List deals (sales) in Lasso CRM. Optionally filter by project ID or status. Supports pagination. |
integration__lasso__lasso_get_deal | lasso.lasso_get_deal | Read | Get full details for a single deal (sale) in Lasso CRM, including pricing, unit details, and associated contacts. |
integration__lasso__lasso_list_inventory | lasso.lasso_list_inventory | Read | List available inventory (units/lots) in Lasso CRM. Optionally filter by project ID or status. Supports pagination. |
integration__lasso__lasso_get_current_user | lasso.lasso_get_current_user | Read | Get the profile of the currently authenticated Lasso CRM user — name, email, organization, and other account details. |