List Forms

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://vaas.vag.as/doc/publicacao-vagas-en/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
{
  "publicacao-vagas-en MCP server": {
    "url": "https://vaas.vag.as/doc/publicacao-vagas-en/mcp"
  }
}

Close
GET /job-posting/forms

List forms available to add in a job

Query parameters

  • pagina integer

    Page to request

    Default value is 1.

  • tamanho_pagina integer

    Records per page

    Default value is 10.

Responses

  • 200 application/json

    OK

    Hide response attributes Show response attributes object
    • total integer
    • total_paginas integer

      Total Pages

    • pagina_atual integer

      Current page

    • tamanho_pagina integer

      Page size

    • fichas array[object]

      Forms

      Hide fichas attributes Show fichas attributes object
      • id integer
      • identificacao string

        Identification (Name) of the form

GET /job-posting/forms
curl \
 --request GET 'https://apigateway.vagas.com.br/v1/job-posting/forms' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "total": 173,
  "total_paginas": 18,
  "pagina_atual": 5,
  "tamanho_pagina": 10,
  "fichas": [
    {
      "id": 312065,
      "identificacao": "Teste de língua portuguesa - VAGAS - Resultado"
    }
  ]
}