Skip to content

Commit 27b2508

Browse files
author
Bas Alberts
committed
Address review feedback
1 parent bfe5ded commit 27b2508

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,14 +94,14 @@ Optional image mount points to supply custom data are configured via the environ
9494
- Custom prompts via `MY_PROMPTS`, mounts to `/app/prompts/my_prompts`
9595
- Custom toolboxes via `MY_TOOLBOXES`, mounts to `/app/toolboxes/my_toolboxes`
9696

97-
See [docker/run.sh](docker/run.sh) for forther details details.
97+
See [docker/run.sh](docker/run.sh) for further details.
9898

9999
Example: deploying a Taskflow (example.yaml):
100100

101101
```sh
102102
docker/run.sh -t example
103103
```
104-
Example: deploying a custom taskflow (custom_taskflow.yaml_:
104+
Example: deploying a custom taskflow (custom_taskflow.yaml):
105105

106106
```sh
107107
MY_TASKFLOWS=~/my_taskflows docker/run.sh -t custom_taskflow

mcp_servers/codeql/mcp_server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ def _run_query(query_name: str, database_path: str, language: str, template_valu
9898
try:
9999
database_path = _resolve_db_path(database_path)
100100
except RuntimeError:
101-
return json.dumps([f"The database pat for {database_path} could not be resolved"])
101+
return json.dumps([f"The database path for {database_path} could not be resolved"])
102102
try:
103103
query_path = _resolve_query_path(language, query_name)
104104
except RuntimeError:

mcp_servers/logbook/logbook.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
filemode='a'
77
)
88
#from mcp.server.fastmcp import FastMCP
9-
from fastmcp import FastMMCP # move to FastMCP 2.0
9+
from fastmcp import FastMCP # move to FastMCP 2.0
1010
import json
1111
from pathlib import Path
1212
import os

mcp_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def wait_for_connection(self, timeout=30.0, poll_interval=0.5):
6666
host = parsed.hostname
6767
port = parsed.port
6868
if host is None or port is None:
69-
raise ValueError(f"URL must include a host and port: {url}")
69+
raise ValueError(f"URL must include a host and port: {self.url}")
7070
deadline = time.time() + timeout
7171
while True:
7272
try:

0 commit comments

Comments
 (0)