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

18 lines
450 B
JavaScript

"use strict";
const { AGENT_SELECTION_CONTRACT, 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 = {
AGENT_SELECTION_CONTRACT,
MAX_JSON_DEPTH,
MAX_LINE_BYTES,
McpServer,
StrictJsonError,
TOOL_DEFINITIONS,
TOOL_NAMES,
parseStrictJsonLine,
runStdio,
};