Build Laravel apps through conversation. Code stored as structured JSON for surgical AI edits.
{
"mcpServers": {
"io-github-mattstellisoft-stellify-mcp": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Build Laravel apps through conversation. Code stored as structured JSON for surgical AI edits.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 5 days ago. 1 stars.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for io.github.MattStellisoft/stellify-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
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:
npm install -g @stellisoft/stellify-mcp
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:
{
"mcpServers": {
"stellify": {
"command": "stellify-mcp",
"env": {
"STELLIFY_API_URL": "https://api.stellisoft.com/v1",
"STELLIFY_API_TOKEN": "your-token-here"
}
}
}
}
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:
"Create a UserController in my Stellify project"
Add methods:
"Add a method called 'store' that takes a Request parameter and returns a JsonResponse"
Implement method logic:
"Add this implementation to the store method:
$user = User::create($request->validated());
return response()->json($user, 201);"
Build a Vue component:
"Create a Counter component with an increment button"
Convert HTML to elements:
"Convert this HTML to Stellify elements:
<div class='container'><h1>Hello</h1><button>Click me</button></div>"
Search your codebase:
"Search for all controller files in my project"
"Find methods related to authentication"
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