KosmoKrator

email

Constant Contact MCP Integration for Cursor

Connect Constant Contact to Cursor through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.

6 functions 5 read 1 write Manual OAuth token auth

Connect Constant Contact to Cursor

Expose selected local integrations to Cursor through KosmoKrator without configuring each service as its own MCP server.

Create or update .cursor/mcp.json with a KosmoKrator stdio server entry. The gateway is local, scoped to this integration, and starts with --write=deny so Cursor can inspect read-capable tools without receiving write access by default.

Constant Contact MCP Config for Cursor

Use the same KosmoKrator install and integration credentials that power terminal and headless runs.

{
  "mcpServers": {
    "kosmokrator-constant_contact": {
      "type": "stdio",
      "command": "kosmo",
      "args": [
        "mcp:serve",
        "--integration=constant_contact",
        "--write=deny"
      ]
    }
  }
}

Run the Gateway Manually

kosmokrator mcp:serve --integration=constant_contact --write=deny

Why Use KosmoKrator Here

Scoped tools

Expose only Constant Contact instead of a broad multi-service tool list.

Local credentials

Reuse credentials already configured for the KosmoKrator CLI and Lua runtime.

Write policy

Start read-only, then opt into ask or allow for trusted workspaces.

Constant Contact Tools Visible to Cursor

Cursor sees stable MCP tool names generated from the Constant Contact integration catalog.

MCP toolSource functionTypeDescription
integration__constant_contact__constantcontact_list_contacts constant_contact.constantcontact_list_contacts Read List contacts from Constant Contact. Supports pagination and filtering by status (active, unconfirmed, opted_out, non_subscriber).
integration__constant_contact__constantcontact_get_contact constant_contact.constantcontact_get_contact Read Get detailed information for a single Constant Contact contact by ID, including email, name, phone, address, and list memberships.
integration__constant_contact__constantcontact_create_contact constant_contact.constantcontact_create_contact Write Create a new contact in Constant Contact. Requires an email address. Optionally set first name, last name, and assign to lists.
integration__constant_contact__constantcontact_list_campaigns constant_contact.constantcontact_list_campaigns Read List email campaigns from Constant Contact. Supports cursor-based pagination.
integration__constant_contact__constantcontact_list_lists constant_contact.constantcontact_list_lists Read List all contact lists in Constant Contact. Returns list IDs, names, and membership counts. Use list IDs when creating contacts.
integration__constant_contact__constantcontact_get_current_user constant_contact.constantcontact_get_current_user Read Get the authenticated user's Constant Contact account information, including name, email, and organization details.

Related Constant Contact Pages