Files
playbook/antigravity-awesome-skills/tools/lib/aas-v1/mcp/index.js
T
2026-07-18 00:02:59 +00:00

17 lines
396 B
JavaScript

"use strict";
const { McpServer, TOOL_DEFINITIONS, TOOL_NAMES } = require("./server");
const { runStdio } = require("./stdio");
const { MAX_JSON_DEPTH, MAX_LINE_BYTES, StrictJsonError, parseStrictJsonLine } = require("./strict-json");
module.exports = {
MAX_JSON_DEPTH,
MAX_LINE_BYTES,
McpServer,
StrictJsonError,
TOOL_DEFINITIONS,
TOOL_NAMES,
parseStrictJsonLine,
runStdio,
};