agda_load_module
Load and typecheck an Agda module from disk, providing errors, warnings, and goal contexts for interactive editing.
Instructions
Load and typecheck one top-level Agda module from disk
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| async | No | true always returns a job handle; false blocks until Agda finishes | |
| timeoutMs | No | Override the configured Agda command timeout for this call | |
| includeRaw | No | Include Agda's native event log; omitted by default because it is large | |
| modulePath | Yes | Absolute path to an .agda, .lagda, or .lagda.md file | |
| deferAfterMs | No | How long this call may block before returning a job handle; capped by maxJobWaitMs | |
| diagnosticsOnly | No | Return only errors and warnings, dropping goals and metavariables | |
| includeContexts | No | Retrieve every returned goal context in the same MCP operation |