{
  "info": {
    "name": "Close — mcp.ai",
    "description": "REST API for the Close MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/close",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "close_create_call",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/call",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "call"
          ]
        },
        "description": "Creates a new call record in Close.com. This tool allows you to log both inbound and outbound calls associated with a lead, supporting parameters such as lead_id, direction, and optional support for c",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"note\": \"\",\n  \"phone\": \"\",\n  \"lead_id\": \"\",\n  \"user_id\": \"\",\n  \"duration\": 0,\n  \"direction\": \"\",\n  \"contact_id\": \"\",\n  \"disposition\": \"\",\n  \"recording_url\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "close_create_lead",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/lead",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "lead"
          ]
        },
        "description": "Creates a new lead in Close CRM. A lead represents a company or organization in your sales pipeline. This tool allows you to create leads with company information (name, description, website), associa",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"name\": \"\",\n  \"contacts\": \"\",\n  \"addresses\": \"\",\n  \"status_id\": \"\",\n  \"description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "close_create_sms",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/sms",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "sms"
          ]
        },
        "description": "This tool creates a new SMS activity in Close CRM. It is primarily used to log SMS communications, including sent messages, received messages, and draft messages. The tool requires an internal phone n",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"text\": \"\",\n  \"status\": \"\",\n  \"lead_id\": \"\",\n  \"send_in\": 0,\n  \"direction\": \"\",\n  \"contact_id\": \"\",\n  \"local_phone\": \"\",\n  \"template_id\": \"\",\n  \"remote_phone\": \"\",\n  \"date_scheduled\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "close_create_task",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/task",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "task"
          ]
        },
        "description": "This tool creates a new task in Close.com. Tasks are used to track to-do items and can be associated with leads. The tool will create a task with the specified parameters using the provided text, due_",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"date\": \"\",\n  \"text\": \"\",\n  \"_type\": \"\",\n  \"lead_id\": \"\",\n  \"assigned_to\": \"\",\n  \"is_complete\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "close_delete_call",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/call",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "call"
          ]
        },
        "description": "This tool allows you to delete a specific call activity in Close.com. It is useful for removing incorrectly logged calls or cleaning up call records. The action deletes a call activity using its uniqu",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"call_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "close_get_note",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/note",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "note"
          ]
        },
        "description": "This tool retrieves a list of note activities from Close. It allows users to fetch notes with optional filtering parameters, including filtering by lead_id, user_id, and date ranges. The tool returns ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"skip\": 0,\n  \"limit\": 0,\n  \"lead_id\": \"\",\n  \"user_id\": \"\",\n  \"date_created__gt\": \"\",\n  \"date_created__lt\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}