The entire OOTW Journal archive — 50 articles on the neuroscience and clinical science of psychedelics — is available as a live MCP server and a plain REST search API. Connect an AI agent, build on it, or pull citations directly. Free, public, CORS-open.
https://ootwjournal.com/mcphttps://ootwjournal.com/api/search?q=Add the journal as a remote MCP server (Streamable HTTP). Example client config:
{
"mcpServers": {
"ootw-journal": {
"type": "http",
"url": "https://ootwjournal.com/mcp"
}
}
}
The server speaks JSON-RPC 2.0 — initialize, tools/list, tools/call.
curl "https://ootwjournal.com/api/search?q=psilocybin+depression&limit=5"
curl "https://ootwjournal.com/api/search?topic=veteran-restoration"
{
"query": "psilocybin depression",
"count": 5,
"results": [
{
"title": "Psilocybin and the Depression Trials",
"url": "https://ootwjournal.com/article-14-psilocybin-depression-trials",
"slug": "article-14-psilocybin-depression-trials",
"topics": ["clinical-research"],
"date": "2026-...",
"description": "..."
}
]
}
curl -X POST https://ootwjournal.com/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call",
"params":{"name":"search_articles",
"arguments":{"query":"DMT pineal","limit":3}}}'
Filterable collections: neuroscience, clinical-research, ceremonial-cacao, microdosing, pharmacology, integration-science, other-medicines, veteran-restoration. Browse them at /topics.
Built by the OOTW mission. Use it well — for the greatest good of all.