Mentor MCP Server

by cyanheads
Verified

second_opinion

Provides a second opinion on a user's request by analyzing it with an LLM and listing critical considerations.

Input Schema

NameRequiredDescriptionDefault
user_requestYesThe user's original request (e.g., 'Explain Python to me' or 'Build a login system')

Input Schema (JSON Schema)

{ "properties": { "user_request": { "description": "The user's original request (e.g., 'Explain Python to me' or 'Build a login system')", "type": "string" } }, "required": [ "user_request" ], "type": "object" }