JobMojito
HomePublic pageAdmin app
HomePublic pageAdmin app
  1. Home
  • Welcome
  • API keys creation
  • API usage and libraries
  • Vibe coding
  • Platform
    • Interview workflow
    • Interview scoring
    • Data privacy model
    • Custom web domain
  • Actions API
    • Client URL for new user
    • Client URL for existing user
    • Invite user
    • Interview result, details with transcript
    • Interview result, generate html/PDF report
    • Create interview, using position data
    • Create interview, using position data & candidate pre-screening
    • Create interview, using provided questions
  • Tables API
    • interview_def_set
      • /interview_def_set
      • /interview_def_set
      • /interview_def_set
      • /interview_def_set
    • interview_def_pre_screening
      • /interview_def_pre_screening
      • /interview_def_pre_screening
      • /interview_def_pre_screening
      • /interview_def_pre_screening
    • interview_def_question
      • /interview_def_question
      • /interview_def_question
      • /interview_def_question
      • /interview_def_question
    • interview_def_response
      • /interview_def_response
      • /interview_def_response
      • /interview_def_response
      • /interview_def_response
    • interview_file
      • /interview_file
      • /interview_file
      • /interview_file
      • /interview_file
    • interview_file_page
      • /interview_file_page
      • /interview_file_page
      • /interview_file_page
      • /interview_file_page
    • interview_result
      • /interview_result
      • /interview_result
      • /interview_result
      • /interview_result
    • interview_templates
      • /interview_templates
      • /interview_templates
      • /interview_templates
      • /interview_templates
    • interview_result_question
      • /interview_result_question
      • /interview_result_question
      • /interview_result_question
      • /interview_result_question
    • interview_result_pre_screening
      • /interview_result_pre_screening
      • /interview_result_pre_screening
      • /interview_result_pre_screening
      • /interview_result_pre_screening
    • knowledge_base
      • /knowledge_base
      • /knowledge_base
      • /knowledge_base
      • /knowledge_base
    • knowledge_base_store
      • /knowledge_base_store
      • /knowledge_base_store
      • /knowledge_base_store
      • /knowledge_base_store
    • knowledge_base_chunks
      • /knowledge_base_chunks
      • /knowledge_base_chunks
      • /knowledge_base_chunks
      • /knowledge_base_chunks
    • position_def_set
      • /position_def_set
      • /position_def_set
      • /position_def_set
      • /position_def_set
    • position_def_step
      • /position_def_step
      • /position_def_step
      • /position_def_step
      • /position_def_step
    • position_result
      • /position_result
      • /position_result
      • /position_result
      • /position_result
    • position_result_step
      • /position_result_step
      • /position_result_step
      • /position_result_step
      • /position_result_step
    • profile
      • /profile
      • /profile
      • /profile
      • /profile
    • profile_interview
      • /profile_interview
      • /profile_interview
      • /profile_interview
      • /profile_interview
  • Webhooks
    • Creating webhooks
    • Webhook: Interview submitted
  1. Home

Vibe coding

Now you can seamlessly Vibe code with JobMojito AI interviews. Effortlessly integrate this powerful job interview platform into your product and be up and running in seconds!

Configuring MCP Client#

Prerequisites#

Node.js environment installed (version ≥ 18, latest LTS recommended)
Any IDE that supports MCP:
Cursor
VSCode + Cline extension
Others
Copied MCP JSON configuration from Apidog online documentations

Configuring MCP in Cursor#

1
Edit MCP Config File
Open Cursor editor, click the settings icon (top-right), select "MCP" from the left menu, then click "+ Add new global MCP server".
mcp-server-setting-cursor.png
2
Add Configuration
Paste the MCP JSON configuration copied from online documentations into the opened mcp.json file:
macOS / Linux
Windows
{
  "mcpServers": {
    "apidog-site-751464": {
      "command": "npx",
      "args": [
        "-y",
        "apidog-mcp-server@latest",
        "--site-id=751464"
      ]
    }
  }
}
3
Verify Configuration
Test the connection by asking the AI (in Agent mode), for example:
Please fetch API documentation via MCP and tell me how many endpoints exist in the project.
If the AI returns correct API information, the connection is successful.
apidog-mcp-server-in-cursor.png

FAQs#

Windows Configuration Issues
If standard configuration fails on Windows, use this instead:
{
  "mcpServers": {
    "apidog-site-751464": {
      "command": "cmd",
      "args": [
        "/c",
        "npx",
        "-y",
        "apidog-mcp-server@latest",
        "--site-id=751464"  // Replace with your Site ID
      ]
    }
  }
}
Node.js Version Problems
How to let AI reads the latest data from the updated API documentation?
Previous
API usage and libraries
Next
Interview workflow
Built with