Advertisement · 728 × 90

Posts by Jeremiah Lowin

Every single complaint I’ve seen about MCP is either people thinking the only possible use case is developers using it to augment Cursor (30%) or the result of using the most lazily built MCP servers known to man (70%) and deciding that it’s the protocol’s problem.

@jlowin.dev also wrote about this

2 weeks ago 8 3 3 0

@prefect.io is everything I wish I had when I was maintaining an app using Airflow

2 weeks ago 4 2 1 0

Lastly, we're already working on FastMCP 3.1 with a new take on MCP Apps.

I think it might be a bigger deal than 3.0.

1 month ago 1 0 0 0
Preview
GitHub - PrefectHQ/fastmcp: 🚀 The fast, Pythonic way to build MCP servers and clients. 🚀 The fast, Pythonic way to build MCP servers and clients. - PrefectHQ/fastmcp

FastMCP is downloaded over a million times a day. We regret that some of you are about to be surprised by an unexpected upgrade.

If it causes any issue, we're sorry. The upgrade guides will help, and if something's broken, please open an issue:
github.com/prefecthq/fa...

1 month ago 2 0 1 0
Preview
Upgrading from FastMCP 2 - FastMCP Migration instructions for upgrading between FastMCP versions

You already know this was our biggest release ever, but during its month-long beta, FastMCP 3 attracted 21 first-time contributors and over 100K opt-in installs.

The paint is still wet on the overhauled docs and upgrade guides (just ask your LLM!)

gofastmcp.com/getting-star...

1 month ago 0 0 1 0
Preview
FastMCP 3.0 is GA Three at last

Most of the work went into rearchitecting the framework to be production-ready for where MCP is going in 2026.

But if we did our job right, you shouldn't be able to tell.

You'll just notice everything works *better*.

www.jlowin.dev/blog/fastmcp...

1 month ago 0 0 1 0

FastMCP 3.0 is out!

I don't even know how to fit it in a post...

🔌 Build servers from directories, APIs, remote servers — anything

🎭 Per-session context & progressive disclosure

🖥️ Full CLI: list, call, generate clients

🔐 Versioning, granular auth, OTEL

⚡️ DX galore

1 month ago 24 4 2 1
Advertisement

imo @jlowin.dev is doing god's work with FastMCP 3, making it super easy to unshittify MCP servers

damn, should have a skill for unshittifying MCP 🤔

2 months ago 9 1 1 0

New Episode of chatting with Prefect's Builders - @jlowin.dev chats with with @aaazzam.bsky.social about FastMCP's path from weekend project to the most popular open source thing we've built.

Also: why "automation" is a better word than "orchestration."

Hope you get outside today. Link below.

1 month ago 3 1 1 0

Actually Colin has a MCP-to-skill template. Probably needs some work

2 months ago 3 0 1 0

Oh no! Would love to learn from your experience. Tool transforms started life in 2.0 as part of Bill Easton’s campaign for sanity so this is a bit of a formalization of that

2 months ago 1 0 1 0
Preview
Upgrade Guide - FastMCP Migration instructions for upgrading between FastMCP versions

There's A LOT here, but we've tried extremely hard to keep breaking changes minimal. Most users will not need to change their code at all.

You can read the full upgrade guide here: gofastmcp.com/development/...

Happy (context) engineering!

2 months ago 1 0 0 0

And by popular demand, we’ve polished the developer experience:

⚡ Servers support hot reload during development

⚡ Decorators now return callable functions (finally!)

⚡ Automatic threadpools for sync tools

2 months ago 1 0 1 0
Preview
What's New in FastMCP 3.0 A comprehensive guide to every major feature

The new architecture lets us ship a massive number of features:

🎁 Custom providers like filesystems and remote APIs

✨ Per-component authorization

🏷️ Component versioning

🧠 And even skills over MCP...!

Read the comprehensive feature guide here: www.jlowin.dev/blog/fastmcp...

2 months ago 4 0 1 0
Preview
Introducing FastMCP 3.0 🚀 Move fast and make things.

We're moving past "tool servers."

Source from anywhere.
Compose and transform freely.
Personalize per-user.
Track state across sessions.
Control access.
Run long operations.
Version your APIs.
Observe everything.

We call this the context era:

www.jlowin.dev/blog/fastmcp-3

2 months ago 6 0 1 1
Video

FastMCP 3.0 is here!

This is our largest and most ambitious release ever.

We've re-architected the framework to support the next generation of MCP applications.

It's time to move fast and make things.

🧵

2 months ago 35 11 1 2
AI Agents Fix/Break Everything: Building Prefect MCP Server & Pydantic AI Integration
AI Agents Fix/Break Everything: Building Prefect MCP Server & Pydantic AI Integration YouTube video by Prefect

We're having conversations with the team about building Prefect. Whatever comes up.

This time with Engineers Nate Nowack (@zzstoatzz) and Alex Streed (@desertaxle). Designing for coding agents, the Prefect MCP server and the Pydantic AI integration. www.youtube.com/watch?v=qTT1...

3 months ago 3 1 0 0
Advertisement

Launching soon :)

4 months ago 10 0 0 1

oh hey its my bio!

» uvx pdsx -r zzstoatzz.io \
ls app.bsky.actor.profile \
-o json \
| jq -r '.[0].description'

yooper → umich → chicago
open-source dev tools @prefect.io
‣ zzstoatzz.io
‣ blog.zzstoatzz.io
◦ status.zzstoatzz.io
‣ github.com/zzstoatzz
‣ tangled.sh/@zzstoatzz.io

4 months ago 7 3 0 0
The FastMCP documentation is available in multiple LLM-friendly formats:
​
MCP Server
The FastMCP docs are accessible via MCP! The server URL is https://gofastmcp.com/mcp.
In fact, you can use FastMCP to search the FastMCP docs:

Copy
import asyncio
from fastmcp import Client

async def main():
    async with Client("https://gofastmcp.com/mcp") as client:
        result = await client.call_tool(
            name="SearchFastMcp", 
            arguments={"query": "deploy a FastMCP server"}
        )
    print(result)

asyncio.run(main())
​
Plain Text Formats
The docs are also available in llms.txt format:
llms.txt - A sitemap listing all documentation pages
llms-full.txt - The entire documentation in one file (may exceed context windows)
Any page can be accessed as markdown by appending .md to the URL. For example, this page becomes https://gofastmcp.com/getting-started/welcome.md.
You can also copy any page as markdown by pressing “Cmd+C” (or “Ctrl+C” on Windows) on your keyboard.

The FastMCP documentation is available in multiple LLM-friendly formats: ​ MCP Server The FastMCP docs are accessible via MCP! The server URL is https://gofastmcp.com/mcp. In fact, you can use FastMCP to search the FastMCP docs: Copy import asyncio from fastmcp import Client async def main(): async with Client("https://gofastmcp.com/mcp") as client: result = await client.call_tool( name="SearchFastMcp", arguments={"query": "deploy a FastMCP server"} ) print(result) asyncio.run(main()) ​ Plain Text Formats The docs are also available in llms.txt format: llms.txt - A sitemap listing all documentation pages llms-full.txt - The entire documentation in one file (may exceed context windows) Any page can be accessed as markdown by appending .md to the URL. For example, this page becomes https://gofastmcp.com/getting-started/welcome.md. You can also copy any page as markdown by pressing “Cmd+C” (or “Ctrl+C” on Windows) on your keyboard.

Kudos again to the @prefect.io crew on doing documentation right for the AI era. I love everything about this -- mcp server, llms.txt and copy as markdown shortcut behavior

5 months ago 9 3 1 0
nooki.me

i made a @nooki.me MCP community and posted an introduction to MCP

nooki.me/post/an-intr...

5 months ago 8 1 0 0

This is the most compelling argument I've seen thus far for MCP.

6 months ago 11 1 0 0
Post image

In a recent post, @chris.blue argues that MCP is an unnecessary and temporary kludge on the decline and facing an uncertain future.

IMO it standardizes how agents have stateful, identity-aware conversations.

aaazzam.substack.com/p/the-apolog...

6 months ago 9 4 2 1
Post image

My new content strategy:

1. Be trending
2. Don’t be not trending

6 months ago 14 1 0 0
Preview
An Open-Source Maintainer's Guide to Saying No Stewardship in the age of cheap code

As an open-source maintainer, one of the hardest things is saying "no" to well-designed features that are simply not a good fit.

With LLMs able to generate volumes of code without context, the maintainer's role as a thoughtful curator has never been more important.

www.jlowin.dev/blog/oss-mai...

6 months ago 38 3 2 0
Post image

Ok we get it... you really, really, really like easy auth integrations.

6 months ago 5 1 0 0
Advertisement
Post image

this time is different

6 months ago 10 1 0 0
Post image

"This issue appears to be a duplicate... of itself."

Tell me more about this "AGI"

github.com/jlowin/fastm...

6 months ago 7 0 0 0

Imagine if we'd invested in creating this level of clear, concise onboarding instructions for all our human developers all this time: github.com/jlowin/fastm...

Maybe the bots will make us better humans

kudos to jlowin.bsky.social and @prefect.io crew

6 months ago 7 1 1 0

🙏 🦾

6 months ago 3 0 0 0