Providers

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://docs.affixapi.com/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"Affix API MCP server": {
  "url": "https://docs.affixapi.com/mcp"
}
Close
GET /providers

Retrieve the api modes (official, xhr) and providers for the respective modes

Responses

  • 200 application/json

    Success

    Hide response attributes Show response attributes object
    • mode string Required

      Values are official or xhr.

    • providers array[string] Required

      Values are sandbox, bamboohr, breathe, cezanne, charliehr, deel, deputy, hailyhr, hibob, humaans, iris cascade, moorepay, nmbrs, parolla.ie, payfit, personio.de, planday, sagehr, saplinghr, staffology, xero uk, brain payroll, brightpay connect, buk, employment hero, epe, factorialhr, fourthhr, greythr, gusto, itrent, justworks, keypay, kontek.se, onpay, oysterhr, paycircle, pento.io, peoplehr, quickbooks online, remote.com, runa, sageone, shape payroll, simplepay.ie, sunfish, talenox, talentoz, unity, zenergy, zoho, or zucchetti.

  • 500 application/json

    Server Error

    Hide response attribute Show response attribute object
    • message string Required
GET /providers
curl \
 --request GET 'https://api.affixapi.com/providers'
Response examples (200)
[
  {
    "mode": "official",
    "providers": [
      "bamboohr",
      "breathe",
      "cezanne",
      "charliehr",
      "deel",
      "deputy",
      "employment hero",
      "factorialhr",
      "hailyhr",
      "hibob",
      "humaans",
      "iris cascade",
      "moorepay",
      "oysterhr",
      "parolla.ie",
      "payfit",
      "peoplehr",
      "personio.de",
      "planday",
      "remote.com",
      "sagehr",
      "saplinghr",
      "simplepay.ie",
      "staffology",
      "xero uk"
    ]
  },
  {
    "mode": "xhr",
    "providers": [
      "bamboohr",
      "brightpay connect",
      "buk",
      "deel",
      "deputy",
      "employment hero",
      "epe",
      "factorialhr",
      "fourthhr",
      "greythr",
      "gusto",
      "hibob",
      "itrent",
      "justworks",
      "keypay",
      "kontek.se",
      "moorepay",
      "nmbrs",
      "onpay",
      "oysterhr",
      "parolla.ie",
      "pento.io",
      "peoplehr",
      "personio.de",
      "quickbooks online",
      "remote.com",
      "runa",
      "sageone",
      "shape payroll",
      "simplepay.ie",
      "sunfish",
      "talenox",
      "talentoz",
      "unity",
      "xero uk",
      "zenergy",
      "zoho",
      "zucchetti"
    ]
  }
]
Response examples (500)
{
  "message": "string"
}