Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion mcp_server/Dockerfile.mcp
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
FROM python:3.11

RUN apt-get update && apt-get install -y cmake make g++
COPY mcp_server /src/mcp_server
WORKDIR /src
RUN pip install -r mcp_server/requirements.txt
Expand Down
4 changes: 2 additions & 2 deletions mcp_server/tests/test_container.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ async def test_planner_tool_t(self) -> None:

payload = await client.call_tool(
"KstarPlannerUnorderedTopQ",
{"domain": domain, "problem": problem},
{"domain": domain, "problem": problem, "quality_bound": 20.0, "num_plans": 1000},
)
assert payload is not None
assert len(payload.structured_content["plans"]) == 1
assert len(payload.structured_content["plans"]) == 1000
optimal_plan = payload.structured_content["plans"][0]
assert len(optimal_plan["actions"]) == 4
assert optimal_plan["cost"] == 4
Loading