sales
Qualifying MCP Integration for OpenAI Agents SDK
Connect Qualifying to OpenAI Agents SDK through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.
Connect Qualifying 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.
Qualifying MCP Config for OpenAI Agents SDK
Use headless JSON commands for CI-style execution and MCP for agent tool discovery.
{
"mcpServers": {
"kosmokrator-qualifying": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=qualifying",
"--write=deny"
]
}
}
} Run the Gateway Manually
kosmokrator mcp:serve --integration=qualifying --write=deny Why Use KosmoKrator Here
Expose only Qualifying 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.
Qualifying Tools Visible to OpenAI Agents
OpenAI Agents sees stable MCP tool names generated from the Qualifying integration catalog.
| MCP tool | Source function | Type | Description |
|---|---|---|---|
integration__qualifying__qualifying_list_accounts | qualifying.qualifying_list_accounts | Read | List sales accounts from Qualifying. Returns a paginated list of accounts with their details. Use limit and page parameters to navigate through results. |
integration__qualifying__qualifying_get_account | qualifying.qualifying_get_account | Read | Get detailed information about a specific sales account in Qualifying. Returns the account's full profile including name, industry, website, and associated metadata. |
integration__qualifying__qualifying_list_contacts | qualifying.qualifying_list_contacts | Read | List contacts from Qualifying. Returns a paginated list of contacts. Optionally filter by account to see contacts belonging to a specific account. |
integration__qualifying__qualifying_get_contact | qualifying.qualifying_get_contact | Read | Get detailed information about a specific contact in Qualifying. Returns the contact's full profile including name, email, phone, associated account, and other metadata. |
integration__qualifying__qualifying_list_deals | qualifying.qualifying_list_deals | Read | List deals from Qualifying. Returns a paginated list of deals with their details. Optionally filter by stage to see deals in a specific pipeline stage (e.g., "lead", "qualified", "won", "lost"). |
integration__qualifying__qualifying_get_current_user | qualifying.qualifying_get_current_user | Read | Get the profile of the currently authenticated Qualifying user. Returns user details such as name, email, and role. Useful for verifying the connection and understanding whose credentials are being used. |