Skip to main content
Workflow Guide

Run ChatGPT, Claude, or Any Model on Selected Notion Text

Notion AI is $10/user/month and locks you to Notion's chosen models. Prompt Anything Pro selects any text in any Notion page and runs it through whichever model you've got an API key for — free if you're already paying OpenAI or Anthropic directly.

Last updated: June 20, 2026

Notion AI ($10/user/month as of 2026) is the default if you want a built-in chat panel and full Notion-context queries that search across your workspace. Prompt Anything Pro covers the case where you don't want a per-seat AI add-on — you already pay OpenAI or Anthropic for API access, you want to compare model outputs across providers, or you want the snippet-level workflow (select text → one prompt → paste back) without invoking a chat conversation. This page covers when each tool wins, the actual Notion editing mechanics that matter, and the prompts that earn back the time it takes to highlight text in the first place.

Step-by-Step Guide

1

When Prompt Anything Pro beats Notion AI — the honest call

Use Notion AI when: your team is on the $10/user/mo plan and using it heavily, you need cross-page workspace queries ("find every doc that mentions Q3 OKRs"), you want the Q&A chat panel for conversational follow-ups, or you want AI blocks (the auto-summary block at the top of database pages).

Use Prompt Anything Pro when:

  • You're on Notion Free or Plus and don't want the AI add-on
  • Your team already pays OpenAI / Anthropic via API and the per-token cost is materially lower than Notion AI's flat fee
  • You want to run prompts through Claude Opus, GPT-4.1, or a model Notion doesn't expose
  • You're comparing the same prompt across providers to decide which model to standardise on
  • You want snippet-level transforms (rewrite this paragraph, expand this bullet) without opening a chat thread

The two coexist fine. Many Notion users keep Notion AI for workspace-wide Q&A and use Prompt Anything Pro for "rewrite this selected text" prompts where the chat thread is overhead.

Tip:Notion AI's only feature Prompt Anything Pro can't replicate is workspace-context Q&A (asking a question that Notion answers by searching your pages). For everything else — summarise, rewrite, expand, translate — the snippet-select flow is faster.
2

Select Notion text and trigger Prompt Anything Pro — the actual mechanics

Notion has multiple ways to invoke AI native to the platform — knowing them helps you decide when to use which:

  • Notion AI shortcut: Cmd+Shift+J (Mac) / Ctrl+Shift+J (Windows) opens Notion AI chat from anywhere in the workspace
  • Slash command: type /ai in any block to insert an AI action
  • Spacebar on blank line: press space on an empty line to open Notion AI inline

Prompt Anything Pro takes a different path — it works on the selection, not the cursor position. The workflow:

  1. Select Notion text — drag-select for inline selection, click in the left margin of a block to select the whole block, or use Cmd/Ctrl+A twice to expand selection from inline → block → page.
  2. Trigger Prompt Anything Pro — the floating action button appears near the selection, or press your configured shortcut (default Cmd/Ctrl+Shift+P).
  3. The popup opens with the selected text pre-loaded — choose a saved prompt or type one. The selection stays highlighted in Notion while the popup is open.
  4. Copy the AI response, then paste back into Notion. For format-preserving paste, use Cmd+Shift+V (Mac) / Ctrl+Shift+V (Windows).

Critical Notion quirk: Notion uses Markdown shortcuts when you paste, so a pasted "## Heading" becomes an H2 block. If you want the AI output to render as a single block, prompt the AI to "return as plain text without Markdown formatting."

Tip:Notion's two-tap Cmd/Ctrl+A behaviour (inline → block → page) is gold for Prompt Anything Pro. First tap selects the inline text you're cursor-positioned in; second tap expands to the whole block. Third tap to the whole page. Use this to scope prompts precisely.
3

Build a Prompt Library inside Notion (database that Notion AI can query)

Create a Notion database called AI Prompt Library. The properties:

  • Prompt Name (Title) — short descriptive name
  • Prompt Text (Text, formula-friendly) — the actual prompt with [TEXT] as the placeholder for selected content
  • Use Case (Multi-select) — Summarise, Rewrite, Extract, Translate, Explain, Format
  • Tone (Select) — Formal, Casual, Technical, Concise, Persuasive
  • Best With Model (Select) — GPT-4.1, Claude Opus, Gemini, Llama (different prompts work better with different models)
  • Rating (Number, 1-5) — sort the library by this to surface high-performers
  • Last Used (Last edited time) — surfaces what you reach for vs what gathers dust

When you discover an effective prompt in Prompt Anything Pro, save it both to the extension's local library (one-click reuse) and add a row to this Notion database. Two benefits: (1) the Notion database becomes shareable team knowledge; (2) Notion AI can query the database ("show me prompts for executive summary tasks") since Notion AI has full workspace context.

This is the hybrid pattern: Notion AI queries the library, Prompt Anything Pro runs the prompts.

Tip:Use the formula property to compose a prompt template with variables. Example: a formula property `"Tone: " + prop("Tone") + ". " + prop("Prompt Text")` lets you parameterise the same prompt for Formal / Casual / Technical contexts without duplicating rows.
4

Meeting notes → structured TL;DR in one prompt

Notion is where many teams capture raw meeting notes — a single page per meeting, often a stream-of-consciousness. The workflow that earns the most time per minute:

  1. Cmd/Ctrl+A twice at the top of the page (selects the entire page content)
  2. Trigger Prompt Anything Pro
  3. Use this prompt verbatim: "Convert this raw meeting transcript into 3 sections: (1) Decisions made, as bullets. (2) Action items, as bullets in format '[Owner] — [task] — [deadline if mentioned]'. (3) Open questions, as bullets. Return plain text, no Markdown headings."
  4. Paste the result at the top of the page as a callout block (/callout) so the TL;DR is visually distinct from the raw notes

The "no Markdown headings" instruction matters because of Notion's auto-conversion on paste — without it, "Decisions made" would become an H1, breaking your page hierarchy.

Tip:Save this prompt as 'Meeting → TL;DR' in both the extension's library and your Notion AI Prompt Library database. Hand the same prompt to teammates so meeting TL;DRs across the workspace have identical structure — Notion's Outline view + search work better on consistent formatting.
5

Extract action items into a tasks database — the cross-database flow

Notion's killer feature is database relations. Pair Prompt Anything Pro with a Tasks database for a real workflow:

  1. Have a Tasks database with properties: Title, Owner (Person), Due (Date), Status (Status), Source Page (Relation → Meeting Notes database)
  2. On a meeting notes page, select the body text, trigger Prompt Anything Pro, prompt: "Extract action items from this text. For each, return one row in this exact format: Title|Owner|Due date|Source context. Use the literal word UNKNOWN where you can't determine a field. Return only the rows, no headers, no preamble."
  3. The output looks like: Send Q3 report to legal|Maria|2026-06-25|Discussed in section 2
  4. Copy the rows. In your Tasks database, Import → paste the rows. Notion parses each pipe-separated line into a row.
  5. Manually link the Source Page relation to the meeting notes page

This is a structural workflow that Notion AI doesn't do directly — Notion AI extracts action items but doesn't format them for import into a relational database. That format-for-import constraint is the depth differentiator.

Tip:If you do this often, build a Notion automation (or a Make.com / Zapier scenario) that watches a 'Pending Extraction' status on the Tasks database and auto-creates the relation. Prompt Anything Pro handles the AI extraction; Notion handles the database mechanics.
6

Privacy boundary + Notion-specific failure modes

Things that will catch you on Notion specifically:

  • Notion's synced blocks share content across pages. If you select a synced block and prompt Prompt Anything Pro to rewrite it, the AI only sees the text — but if you paste the rewrite back, you're editing the source of truth that propagates everywhere. Decide before pasting whether you want the change to sync.
  • Toggle-block content is hidden but selectable when expanded. If your selection includes a collapsed toggle, the AI doesn't see its contents. Expand toggles first (or use Cmd/Ctrl+Alt+T to expand all toggles on the page).
  • Database properties are not part of body selection. To run a prompt on a row's title + properties together, copy the row first (right-click → Copy link or open row → copy properties as text manually), paste into Prompt Anything Pro's input field, then prompt.
  • Notion's @-mentions are stored as references, not text. If your selection includes @Sarah, the AI sees the rendered name but loses the underlying person/page relation. AI-generated text replacing the selection will lose the @-mention; re-type it manually after pasting.
  • Comments are out-of-band. Prompt Anything Pro can't see or process Notion comments — only body text. To process a comment, copy the comment text into the extension input.

Privacy boundary: Prompt Anything Pro sends only the text you select to the AI model provider you've configured. Notion's workspace structure, properties of other database rows, sharing permissions, and unselected page content are never transmitted. The privacy boundary is exactly the text you highlight.

Tip:For confidential pages: run prompts through a local model (Llama 3 via Ollama configured in Prompt Anything Pro's settings). Text never leaves your machine. Slower responses, but the only architecture that's defensible for legal, medical, or HR content.

Use Cases

Teams on Notion Free/Plus running ChatGPT or Claude prompts on selected Notion text via BYOK pricing — no $10/user AI add-on
Operations leads converting raw meeting transcripts into structured 'Decisions / Actions / Open Questions' TL;DR sections
Project managers extracting pipe-delimited action items from meeting notes pages directly into a Tasks database via Notion's Import
Writers maintaining a Notion AI Prompt Library database that Notion AI can query and Prompt Anything Pro can execute against
Knowledge workers rewriting wiki pages for different audience levels (technical → executive) without leaving the Notion page
Editors comparing GPT-4.1 vs Claude Opus output on the same selected paragraph to pick the better rewrite

Need Custom Workflow Help?

Get AI suggestions for advanced Notion integration workflows.

AI responses are generated independently and may vary

Frequently Asked Questions

Run any AI model — not just Notion AI's — on any Notion page

Install Prompt Anything Pro free. BYOK pricing, GPT-4.1 / Claude / Gemini / Llama / local models, no $10/user/mo Notion AI add-on required.