Autokirk MCP Server — AIS v1
This service powers the Autokirk Founder Operating Format and AIS Blueprint Generator.
It exposes MCP-friendly HTTP endpoints that transform a short business description into a structured Autokirk Interaction Standard (AIS) blueprint.
Endpoints
GET /health— deployment + environment checkPOST /mcp/echo— simple echo for debuggingPOST /mcp/blueprint— main AIS blueprint generator
Request
POST /mcp/blueprint
{ "description": "I run a mobile auto detailing business in Florida..." }
Response (shape)
{
"blueprint": {
"aisVersion": "1.0",
"description": "...",
"company": { "...": "..." },
"coreOperations": ["...", "..."],
"autokirkOS": { "divisions": [/* ... */] },
"aiOpportunities": ["...", "..."]
}
}
Local Development
npm install
npm start
The server listens on port 10000 by default (or PORT from environment).
Render Deployment
- Push this repository to GitHub.
- Create a new Web Service on Render.
- Point it at this repo.
- Set:
- Build command:
npm install - Start command:
npm start
- Build command:
- After deploy, visit
/healthto confirm status.
