[{'Text': 'Found 1 matches:\n\n## Matches in point-topic-mcp/src/point_topic_mcp/core/mongodb_utils.py\n\n### def find_operators › L81-88\n```\ndef find_operators(country: str = "") -> list[dict[str, Any]]:\n    """List operators. country="" for all."""\n    query = f\'{{country: {_js_str(country)}}}\' if country else "{}"\n    # Use EJSON.stringify for proper ObjectId handling\n    js = f"EJSON.stringify(db.{OPERATOR_COLLECTION}.find({query}).toArray())"\n    out = _run_mongosh(js)\n    data = json.loads(out) if out else []\n    return data if isinstance(data, list) else [data]\n```\n'}]