{
  "info": {
    "name": "NoCRM.io — mcp.ai",
    "description": "REST API for the NoCRM.io 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/nocrm_io",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "nocrm_io_add_a_tag_to_a_lead",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/a/tag/to/a/lead",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "a",
            "tag",
            "to",
            "a",
            "lead"
          ]
        },
        "description": "Tool to add a tag to a lead. Use when you need to assign one or more tags to a specified lead via noCRM.io.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tag\": \"\",\n  \"lead_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "nocrm_io_append_to_leads_description",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/append/to/leads/description",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "append",
            "to",
            "leads",
            "description"
          ]
        },
        "description": "Tool to append text to the lead's description. Use when you need to add context incrementally without overwriting. Example: Append 'Left voicemail' to lead 1234.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"append_desc\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "nocrm_io_assign_lead_to_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/assign/lead/to/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "assign",
            "lead",
            "to",
            "user"
          ]
        },
        "description": "Tool to assign a lead to a user. Use when reassigning a lead to the correct owner to trigger assignment notification.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"lead_id\": \"\",\n  \"user_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "nocrm_io_change_lead_status_cancelled",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/change/lead/status/cancelled",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "change",
            "lead",
            "status",
            "cancelled"
          ]
        },
        "description": "Tool to change a lead's status to 'Cancelled'. Use after confirming no further follow-up is needed and the lead should be marked as cancelled.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"lead_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "nocrm_io_change_lead_status_standby",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/change/lead/status/standby",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "change",
            "lead",
            "status",
            "standby"
          ]
        },
        "description": "Tool to change a lead's status to 'StandBy'. Use when scheduling follow-up after determining the next contact should occur in a set number of days.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"days\": 0,\n  \"lead_id\": \"\",\n  \"activity_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "nocrm_io_create_lead",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/lead",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "lead"
          ]
        },
        "description": "Tool to create a new lead. Use when adding a fresh prospect to your pipeline via noCRM.io. Example: Create a lead titled 'ACME Corp' assigned to a user.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"step\": \"\",\n  \"tags\": \"\",\n  \"title\": \"\",\n  \"user_id\": \"\",\n  \"description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "nocrm_io_delete_lead",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/lead",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "lead"
          ]
        },
        "description": "Tool to delete a lead. Use when you need to permanently remove a specific lead after verifying it is no longer needed.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "nocrm_io_duplicate_lead",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/duplicate/lead",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "duplicate",
            "lead"
          ]
        },
        "description": "Tool to duplicate a lead. Use when cloning an existing lead into a new step without overwriting original.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"step\": \"\",\n  \"lead_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "nocrm_io_list_all_teams",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/all/teams",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "all",
            "teams"
          ]
        },
        "description": "Tool to retrieve all teams. Use when you need to fetch every team and its members from noCRM.io.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}