Build Laravel apps through conversation. Code stored as structured JSON for surgical AI edits.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Inspect callable tools, capabilities, and parameters exposed to AI agents by Stellify MCP.
get_projectGet the active Stellify project for the authenticated user. **Call this first before any other operations.**
get_directoryGet a directory by UUID to see its contents.
create_directoryCreate a new directory for organizing files.
create_fileCreate a new file in a Stellify project. This creates an empty file shell - no methods, statements, or template yet.
get_fileGet a file by UUID with all its metadata, methods, and statements.
save_fileSave/update a file with its full configuration. This finalizes the file after `create_file`.
Model Context Protocol (MCP) server for Stellify - the AI-native code generation platform.
This MCP server lets AI assistants (like Claude Desktop) interact with your Stellify projects to build Laravel and Vue.js applications incrementally. Instead of generating full code files at once, AI can:
Install globally via npm:
Get your Stellify API token:
Configure Claude Desktop:
Edit your Claude Desktop configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.json~/.config/claude/claude_desktop_config.jsonAdd the Stellify MCP server:
Restart Claude Desktop
That's it! The Stellify tools should now be available in Claude Desktop.
Once configured, you can talk to Claude naturally to build applications:
Create a new controller:
Add methods:
Implement method logic:
Build a Vue component:
Convert HTML to elements:
Search your codebase:
get_projectGet the active Stellify project for the authenticated user. Call this first before any other operations.
Parameters: None
Returns:
uuid: Project UUID (needed for most operations)name: Project namedirectories: Array of {uuid, name} for existing directoriesget_directoryGet a directory by UUID to see its contents.
Parameters:
uuid (required): The UUID of the directorycreate_directoryCreate a new directory for organizing files.
Parameters:
name (required): Directory name (e.g., "js", "css", "components")create_fileCreate a new file in a Stellify project. This creates an empty file shell - no methods, statements, or template yet.
Parameters:
directory (required): UUID of the directory (get from get_project directories array)name (required): File name without extension (e.g., "Counter", "UserController")type (required): File type - "class", "model", "controller", "middleware", or "js"extension (optional): File extension. Use "vue" for Vue components.namespace (optional): PHP namespace (e.g., "App\Services\"). Only for PHP files.includes (optional): Array of fully-qualified class names to import (e.g., ["App\\Models\\User", "Illuminate\\Http\\Request"]). Stellify will resolve these to file UUIDs, fetching from Laravel API or vendor directory if needed.Directory selection: Match the directory to your file's purpose. If the directory doesn't exist, create it first with create_directory.
| File Type | Directory | Namespace |
|---|---|---|
| Controllers | controllers | App\Http\Controllers\ |
| Models | models | App\Models\ |
| Services | services | App\Services\ |
| Middleware | middleware | App\Http\Middleware\ |
| Vue/JS | js | N/A |
Example workflow:
create_file β creates empty shell, returns file UUIDcreate_statement + add_statement_code β add variables/importscreate_method + add_method_body β add functionshtml_to_elements β create template elements (for Vue)save_file β finalize with all UUIDs wired togetherAuto-dependency creation (when auto_create_dependencies: true):
When you create a file with code like:
Stellify will:
use statements to find dependencies (User, Request, Socialite)vendor/ directoryUser model fileincludes array with all dependency UUIDsSupported sources:
Illuminate\* classes fetched from api.laravel.comLaravel\Socialite\*, Laravel\Cashier\*, Spatie\*, Livewire\*, etc. read directly from your vendor/ directory using PHP-ParserThe response includes a dependencies report showing what was created/resolved and from which source.
get_fileGet a file by UUID with all its metadata, methods, and statements.
Parameters:
uuid (required): UUID of the filesave_fileSave/update a file with its full configuration. This finalizes the file after create_file.
Parameters:
uuid (required): UUID of the filename (required): File name (without extension)type (required): File type ("js", "class", "controller", "model", "middleware")extension (optional): File extension ("vue" for Vue SFCs)template (optional): Array of root element UUIDs for Vue <template> sectiondata (optional): Array of METHOD UUIDs only (functions)statements (optional): Array of STATEMENT UUIDs (imports, variables, refs)includes (optional): Array of file UUIDs to importImportant: data = method UUIDs only, statements = statement UUIDs (code outside methods)
search_filesSearch for files in the project by name or type.
Parameters:
name (optional): File name pattern to search fortype (optional): File type filtercreate_methodCreate a method signature in a file (without implementation).
Parameters:
file (required): UUID of the file to add the method toname (required): Method name (e.g., "increment", "store", "handleClick")visibility (optional): "public", "protected", or "private" (PHP only, default: "public")is_static (optional): Whether the method is static (PHP only, default: false)returnType (optional): Return type (e.g., "int", "string", "void")parameters (optional): Array of {name, type} objectsadd_method_bodyParse and add code to a method body. Stellify parses the code into structured JSON statements.
Parameters:
file_uuid (required): UUID of the file containing the methodmethod_uuid (required): UUID of the method to add code tocode (required): Code for the method body (just the statements, no function declaration)Example:
search_methodsSearch for methods in the project by name or within a specific file.
Parameters:
name (optional): Method name to search for (supports wildcards)file_uuid (optional): Filter results to a specific filecreate_statementCreate an empty statement in a file. This is step 1 of 2 - you must call add_statement_code next.
Parameters:
file (optional): UUID of the file to add the statement tomethod (optional): UUID of the method to add the statement to (for method body statements)Use cases:
add_statement_codeAdd code to an existing statement. This is step 2 of 2 - call after create_statement.
Parameters:
file_uuid (required): UUID of the file containing the statementstatement_uuid (required): UUID of the statement to add code tocode (required): The code to addExamples:
get_statementGet a statement by UUID with its clauses (code tokens).
Parameters:
uuid (required): The UUID of the statementcreate_routeCreate a new route/page in a Stellify project.
Factual signals from GitHub, npm, and our automated checks β not a rating.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/stellify-mcp)<a href="https://allmcps.com/mcp/stellify-mcp"><img src="https://allmcps.com/api/badge/stellify-mcp?style=directory" alt="Stellify MCP on AllMCPs" /></a>