List Languages

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 /dominios/idiomas

List languages available to be added in the job requirements

Query parameters

  • nome string

    Name of the language or just the begining

Responses

  • 200 application/json

    OK

    Hide response attributes Show response attributes object
    • id integer
    • nome string

      Name

GET /dominios/idiomas
curl \
 --request GET 'https://apigateway.vagas.com.br/v1/dominios/idiomas' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
  {
    "id": 999,
    "nome": "nome de identificação"
  }
]