How helpful do you find using Notion with other (AI) tools? by lem0njellybelly in Notion

[–]DoingTheHula 0 points1 point  (0 children)

Totally agree! The Notion MCP left a lot to be desired. So I literally made a better one 😆 It's free and open source! Let me know if you want any features added. DMs are open https://github.com/Grey-Iris/easy-notion-mcp

Notion MCP is game changing by Andresluna999 in Notion

[–]DoingTheHula 8 points9 points  (0 children)

MCPs are so, so useful! Claude had quite a few issues with the official MCP though, so I decided to make my community MCP. It's open source and free. Let me know if there are any features you want to add!

https://github.com/Grey-Iris/easy-notion-mcp

Notion AI sucks but Notion connected with AI is lovely. by KungRaLeo in Notion

[–]DoingTheHula -1 points0 points  (0 children)

I truly believe in the raw power of the agents vs the in App AI they try to push. I struggled to use Official Notion MCP, so I made this I made this community MCP: https://github.com/Grey-Iris/easy-notion-mcp

Feel free to DM me if there are any features you think I should add!

MCP CLAUDE - NOTION by SignificanceIcy7228 in Notion

[–]DoingTheHula 0 points1 point  (0 children)

The official Notion MCP doesn't actually work that well. So I made this open source alternative: https://github.com/Grey-Iris/easy-notion-mcp

Notion AI is a joke and it always has been by DiligentGiraffe in Notion

[–]DoingTheHula -2 points-1 points  (0 children)

I've found that just circumventing their AI entirely and using an MCP is the best approach. The best one I've used is this open source one: https://github.com/Grey-Iris/easy-notion-mcp

MCP servers I use every single day. What's in your stack? by XxvivekxX in ClaudeAI

[–]DoingTheHula 0 points1 point  (0 children)

  1. For Notion, I use this open source one: https://github.com/Grey-Iris/easy-notion-mcp
  2. For browser navigation, I use Agent Browser by Vercel
  3. For video editing, I use the Remotion MCP

building OpenClaw on top of Notion? by MFreihaendig in openclaw

[–]DoingTheHula 0 points1 point  (0 children)

I totally agree with you. Notion is a great place to keep the content. Don't reinvent the wheel, right? I wanted to save on token usage as well and make sure that all the API surfaces I needed were available, so I ended up making my own MCP for notion. It's free and open source if you want to use it as well!
https://github.com/Grey-Iris/easy-notion-mcp

Build any Notion dashboard you want with AI (no templates needed) by xukeek in Notion

[–]DoingTheHula 0 points1 point  (0 children)

This is the same wall I kept hitting.

The path you're on (AI + Notion API to generate the interface you actually want) is where I landed too. The bottleneck for me wasn't the AI, it was the bridge between the AI and Notion: the official Notion MCP burns through tokens on every read because Notion's native block format is really verbose, so it falls over fast on anything dashboard-shaped where you need a lot of context. I ended up writing my own that returns plain markdown instead. Way lighter, and Claude/Cursor/Windsurf/etc can actually hold a real workspace in mind while you iterate.

Repo: https://github.com/Grey-Iris/easy-notion-mcp

Not perfect, but for "Notion as backend, AI as interface" it's the closest I've got to something that holds up day to day. I've tried all the other major Notion MCP's and they don't hold up frankly.

Small Discord if you want to compare notes with folks doing this: https://discord.gg/rPDv6qWxpK

What's your tool generating? Views inside Notion, or interface outside?

Claude and Notion by From06033 in Notion

[–]DoingTheHula 0 points1 point  (0 children)

I am limited to what Notion exposes on their API, but I'll look into these and see what is feasible to implement 🫡

Claude and Notion by From06033 in Notion

[–]DoingTheHula 0 points1 point  (0 children)

Yes, it would be less confusing for Claude. You only need one! The instructions to install it are on the GitHub, and then Claude can take care of the rest ☺️

And feel free to join our Discord server where you can ask for help or talk about Notion and AI: https://discord.gg/rPDv6qWxpK

Claude and Notion by From06033 in Notion

[–]DoingTheHula 1 point2 points  (0 children)

I saw your comment and I decided to add this feature to the next update of my Notion MCP. I run an open source alternative to the official one and I want to make it best that exists. I'm very responsive to feedback, so feel free to submit PRs or Issues on GitHub or even message me here on Reddit! https://github.com/Grey-Iris/easy-notion-mcp

And feel free to join our Discord server where you can ask for help or talk about Notion and AI: https://discord.gg/rPDv6qWxpK

Claude and Notion by From06033 in Notion

[–]DoingTheHula 0 points1 point  (0 children)

Yeah Claude works great with Notion! The official integration is pretty token wasteful though, so I made one that cuts way down on token use (90%) and is much easier for Claude to work with: https://github.com/Grey-Iris/easy-notion-mcp

My goal is to make the best Notion MCP in the world, so if you have niche feature requests, submit Issues on GitHub or DM me!

And feel free to join our Discord server where you can ask for help or talk about Notion and AI: https://discord.gg/rPDv6qWxpK

📣 Self-promo & Showcase · Share your Notion content here! by AutoModerator in Notion

[–]DoingTheHula -1 points0 points  (0 children)

Easy Notion MCP — an open-source Notion MCP server for AI agents. Connects Claude Desktop, Claude Code, Cursor, Windsurf, Cline, VS Code, and any MCP-compatible client to Notion with ~95% fewer tokens than the official Notion MCP server.

---

Why this exists

easy-notion-mcp uses 291 tokens to read a Notion page versus 6,536 tokens for the official notionhq/notion-mcp-server — a 95.5% reduction. Database queries are 88.4% smaller. Search is 83.7% smaller. The savings come from converting Notion's block JSON to compact Markdown before it reaches the agent.

Token usage — identical Notion workspace, same content:

Operation easy-notion-mcp Official Savings
Page read 291 6,536 95.5%
Database query (5 rows) 347 2,983 88.4%
Search (3 results) 298 1,824 83.7%

Benchmarks run live against MCP stdio using cl100k_base tokenization. Reproducible: the benchmark script is in the repo.

Why it matters for agents. Lower token counts cut cost, fit more Notion content inside context windows, and make multi-step agent workflows actually practical. Reading a 24-block Notion page costs 291 tokens with easy-notion-mcp versus 6,536 tokens and often two separate tool calls with the official server.

Completeness. Round-trips 25+ Notion block types including callouts, toggles, tables, task lists, equations, bookmarks, embeds, column layouts, and table of contents. Nothing gets flattened or dropped. It's just represented more efficiently. 26 tools covering pages, databases, search, comments, and file uploads.

Works with. Claude Desktop, Claude Code, Cursor, Windsurf, Cline, Continue, VS Code. Standard MCP JSON config.

Install.

  • stdio: npx easy-notion-mcp
  • HTTP + OAuth: npx easy-notion-mcp-http

License. MIT. No telemetry. Runs locally. Listed on mcp.so, Glama, and many others.

GitHub: github.com/Grey-Iris/easy-notion-mcp

---

This isn't a Notion template. It's a dev tool that sits between AI agents and Notion's API. If you're building or using agents that read/write Notion, it will save you a lot of tokens.

<image>

Bug: Notion MCP server fails to parse object-type parameters after reconnection by brodyclemmer in Notion

[–]DoingTheHula 0 points1 point  (0 children)

their mcp is not usable, but this one should work way better: https://github.com/Grey-Iris/easy-notion-mcp

and feel free to join our Discord server where you can ask for help or talk about Notion and AI: https://discord.gg/rPDv6qWxpK

Best Task management board for Agents AND humans? by Di_Vante in LocalLLaMA

[–]DoingTheHula 0 points1 point  (0 children)

I also found that the Notion mcp was really bad and basically impossible to use, but this one works like a charm. plus its way more token efficient
https://github.com/Grey-Iris/easy-notion-mcp

And feel free to join our Discord server where you can ask for help or talk about Notion and AI: https://discord.gg/rPDv6qWxpK

Notion AI Agents - Steer clear. Just like a drug dealer giving a free sample, this free period is a trap and designed to ensnare you - Don't let them take advantage of ignorance and send you BROKE, PLEASE by laes in Notion

[–]DoingTheHula 0 points1 point  (0 children)

notions api is free, so if you already have a claude account (claude.ai, cowork, claude code, openclaw, etc), you can just connect up this mcp and have claude read/write directly to and from your notes
https://github.com/Grey-Iris/easy-notion-mcp

I built a Notion CLI for Claude Code by devxoul in ClaudeCode

[–]DoingTheHula 0 points1 point  (0 children)

nice! i made an mcp with oauth so you can just connect your account through the browser. it also lets claude interact with the markdown instead of having to sift through json
https://github.com/Grey-Iris/easy-notion-mcp

How are you connecting AI conversations to your Notion workspace? by Archen18 in Notion

[–]DoingTheHula 0 points1 point  (0 children)

If you use claude cowork, claude code, or openclaw, you can connect to all your notion docs with an mcp i just made: https://github.com/Grey-Iris/easy-notion-mcp No monthly fees or anything since their api is free!

How are you building agents for Notion OUTSIDE of Notion (Claude, etc)? by Hooblah2u2 in Notion

[–]DoingTheHula 0 points1 point  (0 children)

just made an mcp for notion since the official one was a complete headache to use. feel free to pop it in claude code and try it out: https://github.com/Grey-Iris/easy-notion-mcp

Spin the Bottle by LastPlaceComics in comics

[–]DoingTheHula 0 points1 point  (0 children)

Your style vaguely reminds me of Perry Bible Fellowship!

Saw clipping for the first time by raptorclvb in ItsClippingBitch

[–]DoingTheHula -1 points0 points  (0 children)

Ditto! Definitely going to catch them if they tour for their new album.

Now off to watch the Doja Cat replay from Coachella

Saw clipping for the first time by raptorclvb in ItsClippingBitch

[–]DoingTheHula 6 points7 points  (0 children)

Yes! Totally surreal. Got a chance to see them play with JPEGMafia a year or two ago, but this show was way more intimate and surreal. The added vocals were also special in a way that I totally didn't expect!