PDF Resume

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://apiexportacaodecandidatos.vag.as/doc/exportacaodecandidatos-en/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
{
  "exportacaodecandidatos-en MCP server": {
    "url": "https://apiexportacaodecandidatos.vag.as/doc/exportacaodecandidatos-en/mcp"
  }
}

Close
GET /jobs/resumes/{resume_id}.pdf

Path parameters

  • resume_id string Required

Responses

  • 200 application/pdf

    OK

  • 401 application/json

    Unauthorized

    Hide response attributes Show response attributes object
    • error string
    • status number
  • 404 application/json

    Not Found

    Hide response attributes Show response attributes object
    • error string
    • status number
GET /jobs/resumes/{resume_id}.pdf
curl \
 --request GET 'https://apigateway.vagas.com.br/v1/applicants-export/jobs/resumes/123.pdf' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (401)
{
  "error": "Usuário não autenticado",
  "status": 401
}
Response examples (404)
{
  "error": "Resource not found",
  "status": 404
}