productivity
Keap MCP, CLI, and Lua Integration for AI Agents
Keap integration docs for AI agents: MCP gateway setup, Keap CLI commands, Lua API reference, credentials, and function schemas.Keap for agents
Credentials can be configured manually in web or CLI hosts.
Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.
Agent Surfaces
Machine-Readable Metadata
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
keap.keap_list_contacts | Read read | 2 | List contacts from Keap CRM. Returns paginated results with contact details including name, email, and company. |
keap.keap_get_contact | Read read | 1 | Retrieve a single Keap contact by ID. Returns full contact details including email addresses, phone numbers, and tags. |
keap.keap_create_contact | Write write | 4 | Create a new contact in Keap CRM. Provide at least a first name or last name. Email and company name are optional. |
keap.keap_list_opportunities | Read read | 3 | List sales opportunities from Keap CRM. Optionally filter by pipeline stage. Returns paginated results with opportunity details. |
keap.keap_get_opportunity | Read read | 1 | Retrieve a single Keap sales opportunity by ID. Returns full details including contact, stage, value, and notes. |
keap.keap_list_tags | Read read | 0 | List all tags in Keap. Tags are used to categorize contacts and trigger automations. |
keap.keap_get_current_user | Read read | 0 | Get the currently authenticated Keap user. Returns profile information for the user associated with the access token. |