Wren MCP Server

Sourced pediatric guidance for parents, designed by a practicing pediatrician. One read-only tool over the Model Context Protocol.

Endpoint

POST https://mcp.wren.kids/mcp

Streamable HTTP transport. No authentication. One JSON-RPC message per request. The server never initiates an event stream, so GET is declined.

Tool

{
  "name": "ask_wren_pediatric_question",
  "title": "Ask Wren a pediatric question",
  "description": "Answer a parent-facing question about a child’s health, symptoms, development, or parenting with sourced, physician-designed pediatric guidance. Use for any child health or parenting question. Returns the answer plus the curated sources it relied on. Does not diagnose, and is not for adult health questions.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "question": {
        "type": "string",
        "description": "The parent's question, in their own words."
      }
    },
    "required": [
      "question"
    ]
  },
  "annotations": {
    "readOnlyHint": true,
    "destructiveHint": false,
    "idempotentHint": true,
    "openWorldHint": true
  }
}

Example

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "ask_wren_pediatric_question",
    "arguments": {
      "question": "My 2 year old has had a fever of 102 for two days."
    }
  }
}

The result returns the answer as text content, plus structuredContent carrying the answer and the curated sources it relied on, each with a title, publishing organization, and URL.

What it does

Scope and limits

About

Wren was founded and clinically designed by Dr. Michael Hobbs, a practicing pediatrician, and is built to reduce the waiting, worry, and mental load parents carry between visits.