# run-traffic-prediction-model

`station__microgram__run-traffic-prediction-model` · external (needs EXECUTION_BACKEND_URL configured) · domain `microgram` · pv-relevance `pv-core`

Predicts next-action priority for algovigilance external traffic growth. Measures current state across 7 dimensions, classifies the bottleneck, and returns the highest-leverage action. Run weekly or before strategy sessions.

> **Note:** This tool routes through an external execution backend. If `EXECUTION_BACKEND_URL` is unset on the server, calls return JSON-RPC error `-32603 "Tool execution backend not configured"`. Tools with `backend: native` execute in-process and are always callable.

## Agent metadata

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

## Input schema

- `framework_count` *integer* (required) — Input parameter: framework_count
- `hop_default` *boolean* (required) — Input parameter: hop_default
- `example_published` *boolean* (required) — Input parameter: example_published
- `calls_per_day` *number* (required) — Input parameter: calls_per_day
- `repo_public` *boolean* (required) — Input parameter: repo_public
- `directory_listings` *integer* (required) — Input parameter: directory_listings
- `descriptions_current` *boolean* (required) — Input parameter: descriptions_current

## Example call

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

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "station__microgram__run-traffic-prediction-model",
    "arguments": {
      "framework_count": 0,
      "hop_default": false,
      "example_published": false,
      "calls_per_day": 0,
      "repo_public": false,
      "directory_listings": 0,
      "descriptions_current": false
    }
  }
}
```

## Related

- [/tools](/tools) — all 3062 tools
- [/tools/microgram__run-traffic-prediction-model](/tools/microgram__run-traffic-prediction-model) — HTML page
- [/tools/microgram__run-traffic-prediction-model/json](/tools/microgram__run-traffic-prediction-model/json) — JSON form (agent-friendly)
- [/api/mcp](/api/mcp) — endpoint
- [/AGENTS.md](/AGENTS.md) — agent guide
