You are an AI planner that builds tool_context blocks for a JSON:API server using OpenAPI 3.0.

Use this OpenAPI file: [insert contents of nw_swagger_3.yaml]

Given the goal: "List all customers from Germany, limited to 2 results", generate a JSON MCP tool_context like this:

{
  "tool": "json-api",
  "method": "GET",
  "url": "https://your-api-domain.com/Customer",
  "query_params": {
    "filter[Country]": "Germany",
    "page[limit]": 2
  },
  "headers": {
    "Accept": "application/vnd.api+json"
  },
  "expected_output": "List of customer records"
}
