{"id":28723781,"url":"https://github.com/kirschbaum-development/laravel-loop-filament","last_synced_at":"2025-06-15T09:38:39.027Z","repository":{"id":295884506,"uuid":"985968827","full_name":"kirschbaum-development/laravel-loop-filament","owner":"kirschbaum-development","description":"Filament MCP Server for Laravel Loop","archived":false,"fork":false,"pushed_at":"2025-06-06T16:38:05.000Z","size":123,"stargazers_count":16,"open_issues_count":5,"forks_count":1,"subscribers_count":15,"default_branch":"main","last_synced_at":"2025-06-06T17:27:04.532Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kirschbaum-development.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-05-18T22:22:39.000Z","updated_at":"2025-06-04T21:26:50.000Z","dependencies_parsed_at":"2025-05-27T22:15:20.525Z","dependency_job_id":"889dfa7b-ce07-4d37-9e57-4684d7b8998a","html_url":"https://github.com/kirschbaum-development/laravel-loop-filament","commit_stats":null,"previous_names":["kirschbaum-development/laravel-loop-filament"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/kirschbaum-development/laravel-loop-filament","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kirschbaum-development%2Flaravel-loop-filament","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kirschbaum-development%2Flaravel-loop-filament/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kirschbaum-development%2Flaravel-loop-filament/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kirschbaum-development%2Flaravel-loop-filament/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kirschbaum-development","download_url":"https://codeload.github.com/kirschbaum-development/laravel-loop-filament/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kirschbaum-development%2Flaravel-loop-filament/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259952843,"owners_count":22936997,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-06-15T09:38:23.783Z","updated_at":"2025-06-15T09:38:39.010Z","avatar_url":"https://github.com/kirschbaum-development.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Filament MCP Server - Laravel Loop\n\n![](images/claude-desktop.png)\n\n\u003e [!IMPORTANT]\n\u003e This is a beta version and is not recommended for production use yet.\n\nThe Laravel Loop Filament MCP Server is an extension for [Laravel Loop](https://github.com/kirschbaum-development/laravel-loop) that exposes your Filament Resources as an MCP server. This allows AI assistants and MCP clients to interact with your Filament Resources for data listing, querying, and (optionally) actions.\n\n## What It Does\n\nExposes your Filament Resources as MCP tools. There are 4 tools available:\n\n- `list_filament_resources`: Lists all available Filament Resources to the MCP client.\n- `describe_filament_resource`: Describes the structure, fields, columns, filters, and relationships for a given resource to the MCP client.\n- `get_filament_resource_data`: Queries data for a resource, with optional filters.\n- `execute_filament_resource_action`: Executes a bulk action on a resource (only in ReadWrite mode).\n\n\n\n## Installation\n\n1. Make sure you have Laravel Loop installed and configured.\n\n2. Install the package:\n\n```bash\ncomposer require kirschbaum-development/laravel-loop-filament\n```\n\n3. Register the Filament toolkit in your application. This is typically done in a service provider (e.g., AppServiceProvider):\n\n```php\nuse Kirschbaum\\Loop\\Loop;\nuse Kirschbaum\\Loop\\Filament\\FilamentToolkit;\n\nLoop::toolkit(FilamentToolkit::make());\n```\n\nBy default, it exposes all your Filament resources. You can control which resources are exposed with the `resources` parameter.\n\n```php\nuse Kirschbaum\\Loop\\Loop;\nuse Kirschbaum\\Loop\\Filament\\FilamentToolkit;\n\nLoop::toolkit(FilamentToolkit::make(resources: [\n    \\App\\Filament\\Resources\\UserResource::class,\n    \\App\\Filament\\Resources\\PostResource::class,\n]));\n```\n\nBy default, the toolkit is in read-only mode. To expose the bulk actions of your Filament resources, you can register the tool with ReadWrite model.\n\n```php\nuse Kirschbaum\\Loop\\Loop;\nuse Kirschbaum\\Loop\\Filament\\FilamentToolkit;\nuse Kirschbaum\\Loop\\Enums\\Mode;\n\nLoop::toolkit(\n    FilamentToolkit::make(mode: Mode::ReadWrite)\n);\n```\n\n## Usage\n\nAfter registering the toolkit, you have to connect Laravel Loop to a MCP client, and the tools will be available.\n\n## Security\n\nIf you discover any security related issues, please email security@kirschbaumdevelopment.com instead of using the issue tracker.\n\n## Sponsorship\n\nDevelopment of this package is sponsored by Kirschbaum Development Group, a developer driven company focused on problem solving, team building, and community. Learn more [about us](https://kirschbaumdevelopment.com?utm_source=github) or [join us](https://careers.kirschbaumdevelopment.com?utm_source=github)!\n\n## License\n\nThe MIT License (MIT). Please see [License File](LICENSE) for more information.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkirschbaum-development%2Flaravel-loop-filament","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkirschbaum-development%2Flaravel-loop-filament","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkirschbaum-development%2Flaravel-loop-filament/lists"}