Craftpipe/shipstack-mcp
Full-stack project scaffolder MCP server — generate Next.js, Express, and Fastify apps with auth, database, payments, and deployment through AI coding agents
Platform-specific configuration:
{
"mcpServers": {
"shipstack-mcp": {
"command": "npx",
"args": [
"-y",
"shipstack-mcp"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
<div align="center">
<br/> <br/>
[](https://npmjs.com/package/shipstack-mcp) [](LICENSE) []() []() []() []()
Ship your SaaS in minutes, not weeks. <br/> Scaffold full-stack projects with framework, database, auth, and API routes — through one MCP interface.
Quick Start · Tools · Pro Features · Security · Architecture
<br/>
</div>
---
Agent "Create a new Next.js SaaS project with TypeScript"
ShipStack init_project({
name: "my-saas",
framework: "nextjs",
typescript: true,
package_manager: "npm"
})
Result:
Created my-saas/package.json
Created my-saas/tsconfig.json
Created my-saas/src/app/page.tsx
Created my-saas/src/app/layout.tsx
Created my-saas/.shipstack.json
Project scaffolded in 12ms Agent "Add PostgreSQL with Prisma ORM"
ShipStack add_database({
project_path: "./my-saas",
database: "postgresql",
orm: "prisma"
})
Result:
Created my-saas/prisma/schema.prisma
Created my-saas/src/lib/db.ts
Updated my-saas/package.json (+2 deps)
Updated my-saas/.shipstack.json
Database layer ready — run npx prisma generate Agent "Add JWT auth with logLoading reviews...