MyMenopauseRx Admin MCP
MCP server for managing intake & EMR questions, billing wizard rules, provider directory profiles, business metrics, and clinical knowledge.
Setup
Claude Desktop
Open Settings → Developer → Edit Config and add to claude_desktop_config.json:
{
"mymenopauserx-admin": {
"command": "/opt/homebrew/bin/node",
"args": [
"/opt/homebrew/lib/node_modules/npm/bin/npx-cli.js",
"-y",
"mcp-remote",
"https://mcp.mymenopauserx.com/api/mcp",
"--header",
"Authorization: Bearer YOUR_API_TOKEN"
],
"env": {
"PATH": "/opt/homebrew/bin:/usr/local/bin:/usr/bin:/bin"
}
}
}Claude Code
claude mcp add mymenopauserx-admin \ --transport http \ --url https://mcp.mymenopauserx.com/api/mcp \ --header "Authorization: Bearer YOUR_API_TOKEN"
Authentication
Replace YOUR_API_TOKEN with your MyMenopauseRx API bearer token. The token is configured once in your MCP client settings and passed automatically with every tool call.
How It Works
All question tools accept a type parameter: "intake" or "emr". Start with list_categories to see what exists, then get_category to drill into a specific one. To make changes, call create_question_draft, pass its draftId to as many mutation tools as you need, review with get_question_draft, then publish_question_draft. Nothing goes live until publish. Mutations apply one change to the draft — you never need to send the full payload.