Stellify MCP Server

Build Laravel apps through conversation. Code stored as structured JSON for surgical AI edits.

Local serverstdio

What is the Stellify MCP server?

Most developer tooling work still happens through a UI a human drives. Stellify MCP server moves it into the conversation instead. Build Laravel apps through conversation. Code stored as structured JSON for surgical AI edits.

The short version

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:

The tools it exposes

The server publishes 14 tools. What each one is for:

  • Prerequisites — The Prerequisites tool exposed by this server
  • Installation — The Installation tool exposed by this server
  • Configuration — 1. Get your Stellify API token: - Log into Stellify - Navigate to Settings → API Tokens - Click "Create New Token" -
  • get_project — Get the active Stellify project for the authenticated user. Call this first before any other operations.
  • get_directory — The get_directory tool exposed by this server
  • create_directory — The create_directory tool exposed by this server
  • create_file — Create a new file in a Stellify project. This creates an empty file shell - no methods, statements, or template yet
  • get_file — Get a file by UUID with all its metadata, methods, and statements
  • save_file — Save/update a file with its full configuration. This finalizes the file after create_file
  • search_files — The search_files tool exposed by this server
  • create_method — Create a method signature in a file (without implementation)
  • add_method_body — Parse and add code to a method body. Stellify parses the code into structured JSON statements

Getting it running

Installation goes through your MCP client rather than a global install: point it at @stellisoft/stellify-mcp on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

What it needs from you

Configuration is passed through the environment: STELLIFY_API_URL, STELLIFY_API_TOKEN. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

  • Node.js 18 or higher - A Stellify account - Sign up at stellisoft.com - Claude Desktop (or another MCP-compatible AI client)

How it compares

Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Stellify's toolset — Prerequisites, Installation, Configuration and 11 more — is a fair guide to whether it matches your workflow. It is maintained by MattStellisoft; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Stellify's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Stellify.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
PrerequisitesThe Prerequisites tool exposed by this server.
InstallationThe Installation tool exposed by this server.
Configuration1. **Get your Stellify API token:** - Log into [Stellify](https://stellisoft.com) - Navigate to Settings → API Tokens - Click "Create New Token" - Copy your token
get_projectGet the active Stellify project for the authenticated user. **Call this first before any other operations.**
get_directoryThe get_directory tool exposed by this server.
create_directoryThe create_directory tool exposed by this server.
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.
search_filesThe search_files tool exposed by this server.
create_methodCreate a method signature in a file (without implementation).
add_method_bodyParse and add code to a method body. Stellify parses the code into structured JSON statements.
search_methodsSearch for methods in the project by name or within a specific file.
create_statementCreate an empty statement in a file. This is step 1 of 2 - you must call add_statement_code next.

How to install the Stellify MCP server

{
  "mcpServers": {
    "stellify": {
      "command": "npx",
      "args": ["-y", "@stellisoft/stellify-mcp"],
      "env": {
        "STELLIFY_API_URL": "your-value",
        "STELLIFY_API_TOKEN": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

  • Node.js 18 or higher - A Stellify account - Sign up at stellisoft.com - Claude Desktop (or another MCP-compatible AI client)
VariableDescriptionRequired
STELLIFY_API_URLEndpoint or connection string the server talks to.Yes
STELLIFY_API_TOKENCredential the server authenticates with.Yes

Example prompts to try

  • Use Stellify to Prerequisites.
  • Use Stellify to Installation.
  • Use Stellify to Configuration.

Frequently asked questions

It connects Stellify to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (Prerequisites, Installation, Configuration, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Stellify directly.