Skip to main content
Glama

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 check

  • POST /mcp/echo — simple echo for debugging

  • POST /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

  1. Push this repository to GitHub.

  2. Create a new Web Service on Render.

  3. Point it at this repo.

  4. Set:

    • Build command: npm install

    • Start command: npm start

  5. After deploy, visit /health to confirm status.