惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 叶小钗
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
雷峰网
雷峰网
GbyAI
GbyAI
Hugging Face - Blog
Hugging Face - Blog
N
Netflix TechBlog - Medium
博客园 - 聂微东
Y
Y Combinator Blog
罗磊的独立博客
博客园_首页
小众软件
小众软件
有赞技术团队
有赞技术团队
爱范儿
爱范儿
F
Fortinet All Blogs
C
Check Point Blog
Google DeepMind News
Google DeepMind News
云风的 BLOG
云风的 BLOG
Apple Machine Learning Research
Apple Machine Learning Research
M
MIT News - Artificial intelligence
月光博客
月光博客
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 司徒正美
aimingoo的专栏
aimingoo的专栏

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
I shipped Filament Studio 1.3.0, and it is the first vers...
Serhii · 2026-05-11 · via DEV Community

I have been building Filament Studio as a dynamic data model manager for Filament v5 and Laravel 12.

The original value prop was runtime-defined collections and fields on top of an EAV model, so you can build flexible admin/data systems without creating a new migration for every content type.

That part worked.

But while working on the project, I kept coming back to a different question:

If this data layer is dynamic, how should an AI agent interact with it?

My answer in v1.3.0 was to add the MCP foundation instead of hacking together one-off AI endpoints.

So this release makes Filament Studio usable as an AI-facing layer, not just an admin-facing one.

What I added in v1.3.0

  • MCP server foundation under src/Mcp/
  • HTTP/SSE transport mounted at /ai/studio
  • stdio transport via php artisan mcp:start studio
  • Reuse of StudioApiKey for MCP auth
  • New management scope namespace for MCP operations
  • Capability discovery resources like:
    • studio://info
    • studio://field-types
    • studio://panel-types
    • studio://operators
  • 12 schema-management MCP tools for collections and fields
  • Confirm-token flow for destructive operations
  • Canonical serializer + exception handling for tool responses
  • Tenant-aware behavior aligned with the rest of Studio

Why I think this matters

A lot of AI integration work feels shallow to me.

Either there is a chat UI bolted on top, or there is an agent wired straight into places it probably should not be touching.

For a system like Filament Studio, neither approach feels right.

If the schema is dynamic, the agent needs a real contract:

  • discover what exists
  • inspect schema safely
  • mutate collections and fields through structured tools
  • handle destructive actions with explicit confirmation tokens
  • work through auth scopes instead of bypassing application boundaries

That is the part I wanted to build first.

What changed for me conceptually

Before this release, Filament Studio was mainly a human-operated system.

After this release, it is starting to become an agent-addressable one.

That is a much more interesting direction than sprinkling AI on top of the UI.

I want the data model, schema rules, and operational boundaries of a Laravel app to be available to agents in a structured way.

v1.3.0 is my first serious pass at that.

What this release is not

This is not the final AI story for the project.

It is the foundation.

I started with schema management because if that layer is weak, everything above it becomes fragile.

So I would rather get the contract right first, then expand the workflows on top of it.

If you are building with Filament and thinking about AI agents beyond demo-level features, this is the direction I am building toward.

Follow the project if you want to see where the MCP roadmap goes next.

Feedback I would like
Filament Studio v1.3.0 is available now.

GitHub: https://github.com/flexpik/filament-studio
Packagist: https://packagist.org/packages/flexpik/filament-studio