Craft an Intention for a Psychedelic Experience

Close-up of a hand writing in a journal outdoors with a blurred green natural backdrop and morning light.

Share This Post

The short version: A clear intention gives a guided psychedelic experience direction: something to return to during difficult moments and to measure insights against afterward. Research links clearer intentions to more meaningful experiences. This post introduces a six-lesson video course that walks you through crafting one before a legal psilocybin or ketamine session.

Someone once described their first guided session to me as “fine, but kind of aimless”: good facilitator, safe room, and still nothing to hold onto once things got intense.

That’s the gap intention-setting fills. Many people feel drawn to have a therapeutic psychedelic experience but aren’t sure how to get the most out of it. Unlike recreational use, a therapeutic session relies on careful preparation and a clear intention to support lasting, beneficial change.

Why Intention-Setting Matters

Crafting a meaningful intention shapes how much you get out of a psychedelic experience. It acts as a compass: something to return to during difficult moments and something to measure insights against afterward. Without one, it’s easy to move through the experience without integrating what came up.

This isn’t just intuition. In a prospective survey that followed 654 people planning a psychedelic experience, having clear intentions going in was conducive to the kind of meaningful, mystical-type experiences that predicted improved well-being afterward (Haijen et al., 2018, Frontiers in Pharmacology). More recently, a small pilot study of psilocybin-assisted therapy for alcohol use disorder found that participants’ intentions, spirituality, mindset, and ratings of the setting were all associated with mystical experiences during their sessions (Laird et al., 2026, Psychedelic Medicine). The evidence is early, and it points in one direction: preparation shapes outcomes.

Step-By-Step Video Course

This 6-lesson video course guides you step-by-step to identify your core needs and shape them into a focused intention for your psychedelic session. Over 60 minutes of video lessons and supplementary materials give you a concrete process for the kind of preparation that clinicians and researchers generally consider protective against a harder session.

Crafting your intention means naming, in advance, what you’re hoping to work on. That might be processing trauma, strengthening a relationship, finding a sense of meaning, or reconnecting with yourself or the people around you.

Benefits of the Course

With lifetime access, the course helps you:

  • Understand what intentions are and are not when crafting an intention for a psychedelic experience
  • Connect with your feelings and unmet needs
  • Imagine your needs fulfilled
  • Craft clear, focused intentions
  • Share your intentions with guides or facilitators

Whether you’re preparing for psilocybin, ketamine, or another psychedelic, this course gives you a structured way to prepare. I draw on decades of experience guiding people through these sessions to teach you how to set your compass before you go.

Sign Up and Set Your Compass

Enroll in the course to bring focus and preparation to your upcoming session. With the right intention-setting, the experience is more likely to open up insight you can actually use afterward.

Frequently Asked Questions

What is intention-setting for a psychedelic experience?

Intention-setting means naming, before a session, what you’re hoping to work on or understand. It’s different from a goal or an expected outcome: an intention is a direction, not a demand. It gives you something to return to if the experience gets difficult and a reference point for making sense of what came up afterward.

Do I need a specific goal before I start?

No. An intention is not a rigid goal, and holding one too tightly can work against you. Something as open as “I want to understand my relationship to my anger” works better than “I want to stop being angry by Tuesday.” The course spends a full lesson on the difference.

Can I set an intention on my own, or do I need a guide?

You can absolutely do this work on your own; the course is designed for exactly that. That said, sharing your intention with your facilitator, therapist, or guide before a session helps them support you, and the final lesson covers how to have that conversation.

Does research support intention-setting?

Early evidence suggests it matters. A prospective survey of 654 people found that clearer intentions were conducive to more meaningful, mystical-type experiences (Haijen et al., 2018), and a small 2026 pilot study of psilocybin-assisted therapy found intentions, spirituality, set, and setting were associated with mystical experiences during sessions (Laird et al., 2026). More research is needed, but preparation appears to shape outcomes.

Questions about whether this fits your situation? Get in touch.

Peter H. Addy, PhD, LPC, LMHC is a Portland-based licensed psychotherapist specializing in psychedelic-informed and harm-reduction psychotherapy, ketamine-assisted psychotherapy, and chronic pain. His research background includes postdoctoral work at Yale School of Medicine on psychedelic substances. Learn more about my practice →

More To Explore

Structural Violence and Mental Health

Why Your Struggles Make Perfect Sense Have you ever felt “broken” for having anxiety in an anxiety-provoking world? Or wondered why you can’t just think

Two women in professional attire engaged in a supervision conversation at a desk, one gesturing while speaking and the other listening attentively.
Clinical Supervision

Anti-Oppressive Clinical Supervision

The short version: Anti-oppressive clinical supervision makes power, privilege, and social context an explicit part of supervision rather than background noise. For Oregon LPC Associates,

* controller.abort(), { once: true }); // ── Tool 1: Get practice information ──────────────────────────────────── navigator.modelContext.registerTool({ name: "get_practice_info", description: "Get information about Dr. Peter H. Addy's psychedelic-informed psychotherapy practice, including bio, credentials (LPC, PhD), specializations, and how to get in touch.", inputSchema: { type: "object", properties: {}, required: [], }, signal, execute: async () => { try { const [aboutPages, contactPages] = await Promise.all([ fetch("/wp-json/wp/v2/pages?slug=about&_fields=title,content,excerpt,link") .then((r) => r.json()) .catch(() => []), fetch("/wp-json/wp/v2/pages?slug=contact&_fields=title,content,link") .then((r) => r.json()) .catch(() => []), ]); return { name: "Dr. Peter H. Addy, LPC, PhD", specialization: "Psychedelic-Informed Psychotherapy", site: "https://peterhaddy.com", about: aboutPages[0] ? { title: stripHtml(aboutPages[0].title?.rendered), excerpt: stripHtml(aboutPages[0].excerpt?.rendered), url: aboutPages[0].link, } : null, contact: contactPages[0] ? { url: contactPages[0].link } : { url: "https://peterhaddy.com/contact/" }, }; } catch (err) { return { error: err.message }; } }, }); // ── Tool 2: Search site content ────────────────────────────────────────── navigator.modelContext.registerTool({ name: "search_content", description: "Search Dr. Addy's published articles and pages about psychedelic therapy, MDMA, psilocybin, ketamine, mental health, trauma, PTSD, and related topics.", inputSchema: { type: "object", properties: { query: { type: "string", description: 'Search terms, e.g. "MDMA therapy", "psilocybin depression", "ketamine"', }, limit: { type: "number", description: "Max results to return (default: 5, max: 20)", }, }, required: ["query"], }, signal, execute: async ({ query, limit = 5 }) => { const n = Math.min(Number(limit) || 5, 20); const q = encodeURIComponent(query); const fields = "_fields=id,title,excerpt,link,type,date"; try { const [posts, pages] = await Promise.all([ fetch(`/wp-json/wp/v2/posts?search=${q}&per_page=${n}&${fields}`) .then((r) => r.json()) .catch(() => []), fetch(`/wp-json/wp/v2/pages?search=${q}&per_page=${n}&${fields}`) .then((r) => r.json()) .catch(() => []), ]); const results = [...posts, ...pages] .slice(0, n) .map((item) => ({ title: stripHtml(item.title?.rendered), excerpt: stripHtml(item.excerpt?.rendered), url: item.link, type: item.type, date: item.date, })); return { query, count: results.length, results }; } catch (err) { return { query, error: err.message, results: [] }; } }, }); // ── Tool 3: Get recent articles ────────────────────────────────────────── navigator.modelContext.registerTool({ name: "get_recent_articles", description: "Get the most recent articles and blog posts from Dr. Addy about psychedelic therapy and mental health.", inputSchema: { type: "object", properties: { count: { type: "number", description: "Number of articles to return (default: 5, max: 20)", }, }, required: [], }, signal, execute: async ({ count = 5 }) => { const n = Math.min(Number(count) || 5, 20); try { const posts = await fetch( `/wp-json/wp/v2/posts?per_page=${n}&_fields=title,excerpt,link,date,categories` ) .then((r) => r.json()) .catch(() => []); return posts.map((p) => ({ title: stripHtml(p.title?.rendered), excerpt: stripHtml(p.excerpt?.rendered), url: p.link, date: p.date, })); } catch (err) { return { error: err.message }; } }, }); // ── Helper ─────────────────────────────────────────────────────────────── function stripHtml(html) { if (!html) return ""; return html .replace(/<[^>]+>/g, " ") .replace(/\s+/g, " ") .trim(); } })();