Career Command
AI interview practice and career preparation with user-controlled guidance.
Should I use this
Quality & Safety
Findings (2)
- LOWin prepare_interview_sprint_checkout
- LOWin get_career_command_capabilities
Based on automated analysis of tool definitions and protocol compliance.
Context Cost
This is the approximate number of tokens consumed each time the server's tools are loaded into a model's context. Higher counts reduce the attention available for other tasks.
Install
One-Click Install
Add this to your `claude_desktop_config.json` file:
{
"mcpServers": {
"career-command": {
"url": "https://evercraft-career-command.base44.app/functions/careerMcp"
}
}
}Remote endpoints
https://evercraft-career-command.base44.app/functions/careerMcpstreamable-httpWhat it can do
Tool inventory
Tools (5)
🟢get_interview_sprint_offer
Read the current Evercraft Interview Sprint terms. Read-only. Creates no checkout or payment obligation.
Input Schema
{
"type": "object",
"properties": {},
"$schema": "https://json-schema.org/draft/2020-12/schema"
}⚪prepare_interview_sprint_checkout(user_confirmed_payment, email)
Only after the human explicitly agrees to pay $19 for the 7-day Interview Sprint, prepare a secure Evercraft Payments checkout. Checkout creation is not payment proof.
Input Schema
{
"type": "object",
"properties": {
"user_confirmed_payment": {
"type": "boolean",
"const": true
},
"email": {
"type": "string",
"maxLength": 254,
"format": "email",
"pattern": "^(?:[A-Za-z0-9_'+\\-]+\\.)*[A-Za-z0-9_'+\\-]*[A-Za-z0-9_+-]@(?:[A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"
}
},
"required": [
"user_confirmed_payment",
"email"
],
"$schema": "https://json-schema.org/draft/2020-12/schema"
}🟢get_interview_sprint_status(order_key, session_id)
Verify the Evercraft Payments checkout and, only after provider-confirmed payment, return the bounded 7-day Career Sprint access token and remaining premium actions.
Input Schema
{
"type": "object",
"properties": {
"order_key": {
"type": "string",
"maxLength": 180
},
"session_id": {
"type": "string",
"maxLength": 220
}
},
"required": [
"order_key",
"session_id"
],
"$schema": "https://json-schema.org/draft/2020-12/schema"
}⚪run_interview_sprint_action(access_key, mode, request_id, role, company, ...)
Consume one verified premium action for pre-interview preparation. Supports role-specific question generation, practice-answer evaluation, story recovery, and interview planning. Not for covert live-interview answer feeding.
Input Schema
{
"type": "object",
"properties": {
"access_key": {
"type": "string",
"maxLength": 128
},
"mode": {
"type": "string",
"enum": [
"generate_question",
"evaluate_answer",
"story_recovery",
"interview_plan"
]
},
"request_id": {
"type": "string",
"maxLength": 100
},
"role": {
"type": "string",
"maxLength": 300
},
"company": {
"type": "string",
"maxLength": 300
},
"job_description": {
"type": "string",
"maxLength": 12000
},
"candidate_background": {
"type": "string",
"maxLength": 12000
},
"skills": {
"type": "string",
"maxLength": 4000
},
"achievements": {
"type": "string",
"maxLength": 4000
},
"prior_practice": {
"type": "string",
"maxLength": 6000
},
"question": {
"type": "string",
"maxLength": 3000
},
"answer": {
"type": "string",
"maxLength": 12000
}
},
"required": [
"access_key",
"mode"
],
"$schema": "https://json-schema.org/draft/2020-12/schema"
}🟢get_career_command_capabilities
Read Career Command machine-commerce boundaries and supported premium practice actions.
Input Schema
{
"type": "object",
"properties": {},
"$schema": "https://json-schema.org/draft/2020-12/schema"
}Community
Evidence