{
  "info": {
    "name": "Acculynx — mcp.ai",
    "description": "REST API for the Acculynx 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/acculynx",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "acculynx_add_job_appointment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/job/appointment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "job",
            "appointment"
          ]
        },
        "description": "This endpoint allows users to schedule the initial appointment for a specific job in the AccuLynx system. It is used to set up the first meeting or site visit for a construction or roofing project. Th",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"jobId\": \"\",\n  \"endDate\": \"\",\n  \"startDate\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "acculynx_create_a_contact",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/contact",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "contact"
          ]
        },
        "description": "Creates a new contact in the AccuLynx system with detailed information for use in roofing and construction project management. This endpoint allows for the addition of comprehensive contact details in",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"note\": \"\",\n  \"lastName\": \"\",\n  \"firstName\": \"\",\n  \"companyName\": \"\",\n  \"phoneNumbers\": \"\",\n  \"contactTypeIds\": \"\",\n  \"crossReference\": \"\",\n  \"emailAddresses\": \"\",\n  \"companyJobTitle\": \"\",\n  \"billingAddress__city\": \"\",\n  \"mailingAddress__city\": \"\",\n  \"billingAddress__street1\": \"\",\n  \"billingAddress__street2\": \"\",\n  \"billingAddress__zipCode\": \"\",\n  \"mailingAddress__street1\": \"\",\n  \"mailingAddress__street2\": \"\",\n  \"mailingAddress__zipCode\": \"\",\n  \"billingAddress__state__id\": 0,\n  \"mailingAddress__state__id\": 0,\n  \"billingAddress__country__id\": 0,\n  \"mailingAddress__country__id\": 0,\n  \"billingAddressSameAsMailingAddress\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "acculynx_create_a_job",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/job",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "job"
          ]
        },
        "description": "Creates a new job in the AccuLynx system with the provided details. This endpoint allows you to initialize a job with essential information such as the associated contact, location, job category, work",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"notes\": \"\",\n  \"priority\": \"\",\n  \"tradeTypes\": \"\",\n  \"contact__id\": \"\",\n  \"workType__id\": 0,\n  \"leadSource__id\": \"\",\n  \"jobCategory__id\": 0,\n  \"locationAddress__city\": \"\",\n  \"locationAddress__state\": \"\",\n  \"locationAddress__country\": \"\",\n  \"locationAddress__street1\": \"\",\n  \"locationAddress__street2\": \"\",\n  \"locationAddress__zipCode\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "acculynx_create_a_lead",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/lead",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "lead"
          ]
        },
        "description": "This endpoint creates a new lead in the AccuLynx system, specifically for residential roofing projects. It should be used when a new potential customer expresses interest in roofing services or when i",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"lastName\": \"\",\n  \"firstName\": \"\",\n  \"emailAddress\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "acculynx_job_appointment_summary",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/job/appointment/summary",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "job",
            "appointment",
            "summary"
          ]
        },
        "description": "Retrieves a list of appointments from the calendar associated with a specific job in AccuLynx. This endpoint is used to fetch scheduled events, such as site visits, inspections, or project milestones,",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"jobId\": \"\",\n  \"endDate\": \"\",\n  \"startDate\": \"\",\n  \"pageStartIndex\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "acculynx_list_of_calendars_for_the_location",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/of/calendars/for/the/location",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "of",
            "calendars",
            "for",
            "the",
            "location"
          ]
        },
        "description": "Retrieves a list of calendars associated with the authenticated user or organization in AccuLynx. This endpoint provides access to the calendar data, which is crucial for scheduling and organizing tas",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"pageSize\": 0,\n  \"pageStartIndex\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "acculynx_list_of_contact_types_related_to_the_company",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/of/contact/types/related/to/the/company",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "of",
            "contact",
            "types",
            "related",
            "to",
            "the",
            "company"
          ]
        },
        "description": "Retrieves a list of all available contact types in the AccuLynx system. This endpoint is used to fetch the predefined categories or classifications for contacts, such as residential, repair, property ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"pageSize\": 0,\n  \"pageStartIndex\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "acculynx_update_company_representative",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/company/representative",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "company",
            "representative"
          ]
        },
        "description": "This endpoint allows you to add a company representative to a specific job within the AccuLynx system. It is used when you need to associate a representative with a particular project or task. The end",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"jobId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}