Connects Claude to MedlinePlus, the NIH's consumer health information database. Exposes a single search tool that queries MedlinePlus topics and related National Library of Medicine databases using free text. Runs through Pipeworx's hosted gateway, so there's no local setup or API keys to manage. You can call the search tool directly or use ask_pipeworx to handle queries in plain English. Reach for this when you need reliable, government-sourced health information in conversational apps or when building medical education tools that need to pull from trusted sources without dealing with NLM API authentication.
MedlinePlus MCP — NIH consumer health info
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|---|
search | Free-text search across MedlinePlus topics (or related NLM databases). |
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"medlineplus": {
"url": "https://gateway.pipeworx.io/medlineplus/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 673+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Medlineplus data" })
The gateway picks the right tool and fills the arguments automatically.
MIT