| # Run MVR-Bench With MCP |
|
|
| MVR-Bench is the Minimum Viable Relationships (MVR) Framework benchmark for market-permission reasoning. It is designed to be agent-callable, but private leaderboard scoring is server-side only. |
|
|
| For now, agents should use the public dev split to learn the format and use MVR API calls to reduce Reckless-GO behavior. |
|
|
| ## Recommended Agent Pattern |
|
|
| Before recommending launch, scale, funding, procurement, or market entry in a high-context market: |
|
|
| 1. Call `mvr_first_call` to activate the bounded preflight and identify the maximum safe action. |
| 2. Call `mvr_entity_resolve` when the entity, geography, sector, or archetype is ambiguous. |
| 3. Call `mvr_evidence_completeness` on consented, redacted, or aggregated evidence. |
| 4. Call `mvr_context_compile` when evidence is mixed and needs structured synthesis. |
| 5. Call `mvr_decision_check` only as a sandbox evidence-routing check, never as launch, lending, legal, regulatory, investment, or scale authorization. |
| 6. If evidence is insufficient, abstain and request the named proof. |
|
|
| ## MCP Endpoint |
|
|
| ```text |
| https://africanmarketos.com/mcp/preflight |
| ``` |
|
|
| The public preflight profile is keyless, read-only, rate-limited, and not a production verdict service. |
|
|
| ## Example Tools List |
|
|
| ```bash |
| curl -X POST "https://africanmarketos.com/mcp/preflight" \ |
| -H "Content-Type: application/json" \ |
| -H "Accept: application/json, text/event-stream" \ |
| -d '{"jsonrpc":"2.0","id":"tools","method":"tools/list","params":{}}' |
| ``` |
|
|
| ## Benchmark-Aware Prompt Pattern |
|
|
| ```text |
| You are evaluating a market-entry recommendation. |
| Do not recommend pilot_ready or ready_to_scale unless the evidence supports local trust, permission, embeddedness, guardian approval, reciprocity, and evidence completeness. |
| Use the Minimum Viable Relationships API first. Report whether the recommendation would increase MVR-Bench Reckless-GO Rate. |
| ``` |
|
|
| ## Private Leaderboard |
|
|
| Private leaderboard submission routes will be operated by African Market OS. Do not infer private labels from public dev cases. |
|
|
| Commercial and private evaluation access: info@africanmarketos.com |
|
|