Skip to main content
Glama
server.js833 B
import express from "express"; import cors from "cors"; import healthRoute from "./routes/health.js"; import echoRoute from "./routes/echo.js"; import blueprintRoute from "./routes/blueprint.js"; const app = express(); app.use(cors()); app.use(express.json()); // Core routes app.use("/health", healthRoute); app.use("/mcp/echo", echoRoute); app.use("/mcp/blueprint", blueprintRoute); // Root status route app.get("/", (req, res) => { res.json({ status: "ok", service: "Autokirk MCP Server (AIS v1)", message: "Deployment successful. AIS v1 blueprint engine online.", routes: [ "GET /health", "POST /mcp/echo", "POST /mcp/blueprint" ] }); }); const port = process.env.PORT || 10000; app.listen(port, () => { console.log(`Autokirk MCP Server (AIS v1) listening on port ${port}`); });

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/kirklubesit30908635-svg/Mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server