Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Autokirk MCP Servercreate an AIS blueprint for my online tutoring platform"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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 startThe 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 installStart command:
npm start
After deploy, visit
/healthto confirm status.