For Developers & AI Agents

Query the Journal with AI

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.

MCP Endpoint
https://ootwjournal.com/mcp
REST Search
https://ootwjournal.com/api/search?q=

Tools

search_articlesget_articlelist_topicslist_latest

Connect via MCP

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.

REST Search (no MCP client needed)

Search by query

curl "https://ootwjournal.com/api/search?q=psilocybin+depression&limit=5"

Filter by topic

curl "https://ootwjournal.com/api/search?topic=veteran-restoration"

Example response

{
  "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": "..."
    }
  ]
}

Call a tool directly (JSON-RPC)

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}}}'

Topics

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.