Registra un gasto realizado con tarjeta de crédito a nombre de otra persona. Equivale a gastos_flow_create_gasto con es_prestamo_tarjeta=true, pero requiere persona_id de forma obligatoria para evitar olvidarlo. Args: - persona_id (number): ID de la persona para quien se hizo el gasto (obligat...
High parameter count (12 properties)
Part of the Gastos Flow MCP server. Enforce policies on this tool with Intercept, the open-source MCP proxy.
AI agents use gastos_flow_create_gasto_tercero to create or modify resources in Gastos Flow. Write operations carry medium risk because an autonomous agent could trigger bulk unintended modifications. Rate limits prevent a single agent session from making hundreds of changes in rapid succession. Argument validation ensures the agent passes expected values.
Without a policy, an AI agent could call gastos_flow_create_gasto_tercero repeatedly, creating or modifying resources faster than any human could review. Intercept's rate limiting ensures write operations happen at a controlled pace, and argument validation catches malformed or unexpected inputs before they reach Gastos Flow.
Write tools can modify data. A rate limit prevents runaway bulk operations from AI agents.
tools:
gastos_flow_create_gasto_tercero:
rules:
- action: allow
rate_limit:
max: 30
window: 60 See the full Gastos Flow policy for all 55 tools.
Agents calling write-class tools like gastos_flow_create_gasto_tercero have been implicated in these attack patterns. Read the full case and prevention policy for each:
Other tools in the Write risk category across the catalogue. The same policy patterns (rate-limit, validate) apply to each.
Registra un gasto realizado con tarjeta de crédito a nombre de otra persona. Equivale a gastos_flow_create_gasto con es_prestamo_tarjeta=true, pero requiere persona_id de forma obligatoria para evitar olvidarlo. Args: - persona_id (number): ID de la persona para quien se hizo el gasto (obligatorio). - moneda_id (number): ID de la moneda (obligatorio). - categoria_gasto_id (number): ID de la categoría (obligatorio). - monto (number): Monto ≥ 0.01 (obligatorio). - periodo_mes (number): Mes del período 1–12 (obligatorio). - periodo_anio (number): Año del período ≥ 2000 (obligatorio). - cuenta_id (number, opcional): ID de la cuenta (tarjeta usada). - fecha (string, opcional): Fecha en formato YYYY-MM-DD. - descripcion (string, opcional): Descripción, máx. 255 caracteres. - es_cuota (boolean, opcional): Si es pago en cuotas. - cuota_numero (number, opcional): Número de cuota que se está registrando (defecto 1 si se omite). - cuota_total (number, opcional): Total de cuotas del gasto. Comportamiento de cuotas (es_cuota=true y cuota_total > 1): - monto es el VALOR DE CADA CUOTA. Si el usuario dice "$10.000 en 3 cuotas", pasar monto=10000 (no dividir). - El servidor crea automáticamente TODAS las cuotas restantes. Solo hay que enviar UNA llamada. Returns: El gasto creado con es_prestamo_tarjeta=true y la persona asociada.. It is categorised as a Write tool in the Gastos Flow MCP Server, which means it can create or modify data. Consider rate limits to prevent runaway writes.
Add a rule in your Intercept YAML policy under the tools section for gastos_flow_create_gasto_tercero. You can allow, deny, rate-limit, or validate arguments. Then run Intercept as a proxy in front of the Gastos Flow MCP server.
gastos_flow_create_gasto_tercero is a Write tool with medium risk. Write tools should be rate-limited to prevent accidental bulk modifications.
Yes. Add a rate_limit block to the gastos_flow_create_gasto_tercero rule in your Intercept policy. For example, setting max: 10 and window: 60 limits the tool to 10 calls per minute. Rate limits are tracked per agent session and reset automatically.
Set action: deny in the Intercept policy for gastos_flow_create_gasto_tercero. The AI agent will receive a policy violation error and cannot call the tool. You can also include a reason field to explain why the tool is blocked.
gastos_flow_create_gasto_tercero is provided by the Gastos Flow MCP server (gastos-flow-mcp-server). Intercept sits as a proxy in front of this server to enforce policies before tool calls reach the server.
Deterministic policy on every MCP tool call. Per-identity grants. Full audit log.