/** * Read-only MCP tools that expose what `chant build` already computes about a * Fly deploy — its apps and machines, the flaps create bodies, image pinning, * and the lexicon's findings — so an agent can ask about a change *before it * runs* (#804). * * Every tool builds from source and returns data. None touch a live Fly org, * read run history, or write anything — the same context-producer boundary the * AWS/GitLab context tools hold. */ import type { McpToolContribution } from "@intentius/chant/mcp/types"; /** A container image reference is pinned when it names a digest, not a tag. */ export declare function imagePinned(image: string): boolean; export declare function flyContextTools(): McpToolContribution[]; //# sourceMappingURL=context-tools.d.ts.map