# Microgram: presente-desambiguacion

`station__algovigilance__microgram-presente-desambiguacion` · native (always callable) · domain `algovigilance` · pv-relevance `pv-core`

Desambigua "presente" entre indicativo y subjuntivo usando el verbo rector (verbo_contexto) como árbitro. "Creo que presenta" (indicativo) vs "Dudo que presente" (subjuntivo) — el verbo que gobierna la cláusula determina el modo. Resolves the presente/presenta collision where the same surface form maps to different grammatical moods.

## Agent metadata

- `idempotent`: true
- `read_only`: true
- `expected_latency_ms`: unknown (not yet contract-tested)
- `cost_tokens_estimate`: unknown

## Input schema

- `forma_verbal` *string* (required) — La forma verbal ambigua a desambiguar (ej. "presente", "cause"). The ambiguous verb form to disambiguate.

- `verbo_contexto` *string* — El verbo rector que introduce la cláusula subordinada. Verbos de certeza (creer, afirmar, saber) → indicativo. Verbos de duda/deseo/negación (dudar, querer, negar, esperar, temer) → subjuntivo. If absent, uses heuristic based on form endings.


## Example call

```json
POST /api/mcp
Content-Type: application/json

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "station__algovigilance__microgram-presente-desambiguacion",
    "arguments": {
      "forma_verbal": ""
    }
  }
}
```

## Related

- [/tools](/tools) — all 7718 tools
- [/tools/algovigilance__microgram-presente-desambiguacion](/tools/algovigilance__microgram-presente-desambiguacion) — HTML page
- [/tools/algovigilance__microgram-presente-desambiguacion/json](/tools/algovigilance__microgram-presente-desambiguacion/json) — JSON form (agent-friendly)
- [/api/mcp](/api/mcp) — endpoint
- [/AGENTS.md](/AGENTS.md) — agent guide
