I Built Fast API, but for Flutter/Dart & AI A developer has released fast_crud_api, an open-source Dart and Flutter package that provides a lightweight, customizable CRUD API server built on the shelf middleware library. The package exposes /create, /read, /update, and /delete endpoints, which the developer says can give AI agents a pathway to control specific app functionality, such as managing notes in a Flutter app. It also supports custom routes for developers who want to skip the built-in CRUD scaffolding. One of my favorite Python Packages is fastapi . I love how you can build an API server very quickly with minimal code. Then, to top it off, you can use its built-in Swagger UI to test your API. To my knowledge, Flutter/Dart has no package that does this... I will build it myself... You got me It was really to connect AI Agents to my Flutter applications- why, of course I did not build this package from the ground up; I had some help Introducing shelf , a web-server middleware package for Dart. I used shelf to create a Flutter package named fast crud api . fast crud api is a lightweight, simple, and customizable CRUD API Server in Dart. CRUD is an acronym for Create, Read, Update, and Delete, representing the four fundamental operations for managing persistent data in software applications and databases. I built CRUD into the package because it creates a pathway for an AI Agent to control specific app functionality. With four endpoints /create , /read , /update , and /delete . For example, if I created a notes app in Flutter. With fast crud api , I could connect an AI Agent to create, read, update, and delete notes. Effectively giving the AI Agent a new skill that it can use. Likewise, you could leave the CRUD out of it and create a custom API instead APIServer is the main implementation and has the following parameters: class APIServer { final String? apiName; final Future