Integration Methods
MCP Server
Add to Claude Desktop, Cursor, or Windsurf. Query predictions directly in conversation.
ChatGPT GPT Actions
Import our OpenAPI schema into a custom GPT. Instant psychedelic intelligence assistant.
REST API
Plain JSON endpoints. No auth. Works with any HTTP client, LangChain, or curl.
n8n / Make.com
HTTP Request node โ parse predictions array. Build daily briefing automations in minutes.
LangChain / LlamaIndex
Use requests tool or JsonLoader with our API. Drop into any RAG pipeline.
RSS / JSON Feed
Subscribe to our feed in any RSS reader or feed aggregator. Auto-syncs to Medium.
API Endpoints โ No Auth Required
All endpoints are public, free, and updated daily by noon ET.
MCP Server โ Claude Desktop & Cursor
The OOTWOracle MCP server gives Claude and other MCP-enabled tools 5 callable tools: get today's predictions, fetch any report, search across all 162 predictions, check oracle status, and read the full agent debate.
Quick Install (2 minutes)
pip install mcp httpx
curl -o ootworacle_mcp.py https://www.ootworacle.com/mcp-server/server.py
Edit ~/.config/claude/claude_desktop_config.json (macOS: ~/Library/Application Support/Claude/claude_desktop_config.json)
{
"mcpServers": {
"ootworacle": {
"command": "python",
"args": ["/absolute/path/to/ootworacle_mcp.py"]
}
}
}
You'll see OOTWOracle in your tools list. Ask Claude: "What does OOTWOracle predict about ibogaine this week?"
Available MCP Tools
ChatGPT GPT Actions
Create a new GPT or edit an existing one.
https://www.ootworacle.com/openapi.json
You are an oracle assistant with access to OOTWOracle โ
a daily AI prediction service on psychedelic medicine.
Use the get_predictions action to answer questions about
FDA timelines, clinical trials, biotech markets, and
drug policy. Always cite confidence scores.
n8n / Make.com / Zapier
n8n โ Daily Briefing Automation
// HTTP Request node
Method: GET
URL: https://www.ootworacle.com/predictions.json
// Parse response
{{ $json.predictions[0].title }} โ {{ $json.predictions[0].confidence }}%
{{ $json.predictions[0].reasoning }}
Make.com (Integromat)
Module: HTTP โ Make a request
URL: https://www.ootworacle.com/predictions.json
Method: GET
Parse response: Yes
โ Map predictions[] array to your workflow
LangChain / Python
import requests
# Today's predictions
data = requests.get("https://www.ootworacle.com/predictions.json").json()
for p in data["predictions"]:
print(f"{p['confidence']}% โ {p['title']}")
# Search all predictions
archive = requests.get("https://www.ootworacle.com/all_predictions.json").json()
ibogaine = [p for p in archive["predictions"]
if "ibogaine" in p["title"].lower()]
# Full report as LLM context
report = requests.get("https://www.ootworacle.com/llms-full.txt").text
What the Oracle Covers
OOTWOracle's 8-agent swarm tracks everything in the psychedelic medicine ecosystem:
๐๏ธ FDA & Regulation
Approval timelines, REMS updates, NDA filings, clinical holds, breakthrough designations
๐งฌ Research
Phase 1/2/3 trials, MAPS MDMA therapy, Compass psilocybin, ibogaine/oxa-noribogaine
๐ Legislation
Congressional bills, state right-to-try frameworks, VA reform, scheduling petitions
๐ Markets
CMPS, ATAI, MMED, MindMed valuations, biotech funding rounds, M&A signals
๐ฌ Compounds
Psilocybin, MDMA, ibogaine, ketamine, LSD, DMT โ mechanism, safety, access
๐ Culture
Veteran advocacy, harm reduction, patient communities, media narrative shifts
Ready to integrate?
Free API โ no auth, no rate limits, no signup. Updated daily by 11:11am ET.
Try the API OpenAPI Schema MCP ServerQuestions?
Contact: alex@ootw.co
More discovery files: /llms.txt ยท /.well-known/mcp.json ยท /agent-manifest.json ยท /.well-known/ai-plugin.json