Read MCP configuration.
()
| 20 | |
| 21 | @pytest.fixture(scope="module") |
| 22 | def mcp_config(): |
| 23 | """Read MCP configuration.""" |
| 24 | mcp_config_path = Path("mini_agent/config/mcp.json") |
| 25 | with open(mcp_config_path, encoding="utf-8") as f: |
| 26 | return json.load(f) |
| 27 | |
| 28 | |
| 29 | # ============================================================================= |