get_interview_prep_prompt
Prepare for medical writing interviews by generating role-specific questions and STAR-based answer frameworks. Get 10 likely questions, structured answers, and 5 smart questions to ask.
Instructions
[PRO] Prepare for a medical writing interview with role-specific questions and STAR frameworks. Generates 10 likely questions, answer frameworks, and 5 smart questions to ask.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| job_title | Yes | ||
| company_type | Yes | ||
| key_responsibilities | Yes | ||
| your_key_experiences | Yes | ||
| focus_area | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |
Implementation Reference
- server.py:886-906 (handler)The actual handler function for the 'get_interview_prep_prompt' tool. It is decorated with @mcp.tool() and takes 5 parameters (job_title, company_type, key_responsibilities, your_key_experiences, focus_area). It returns a formatted prompt string asking an LLM to generate 10 interview questions with STAR-format frameworks and 5 questions to ask the interviewer.
@mcp.tool() def get_interview_prep_prompt( job_title: str, company_type: str, key_responsibilities: str, your_key_experiences: str, focus_area: str ) -> str: """ [PRO] Prepare for a medical writing interview with role-specific questions and STAR frameworks. Generates 10 likely questions, answer frameworks, and 5 smart questions to ask. """ return f"""I have an interview for {job_title} at {company_type}. The role focuses on {key_responsibilities}. Generate: 1. 10 likely interview questions specific to this role 2. For each question, a STAR-format answer framework using: {your_key_experiences} 3. 5 smart questions I should ask the interviewer Focus especially on: {focus_area}""" - server.py:1003-1003 (registration)Registration entry listing the tool as 'get_interview_prep_prompt' in the PRO tier tool directory with description 'Prepare for medical writing interview'.
("get_interview_prep_prompt", "Prepare for medical writing interview"),