-
Notifications
You must be signed in to change notification settings - Fork 759
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cannot start client with npx #240
Comments
I would try providing the absolute path to NPX. If that works then the culprit would be path handling |
Note the following from the python-sdk examples: import shutil
import ... # Rest of imports
class Server:
"""Manages MCP server connections and tool execution."""
def __init__(self, name: str, config: dict[str, Any]) -> None: # Notice the Server class takes a name and a config (json)
self.name: str = name
self.config: dict[str, Any] = config # config is applied to self.config in the Server class instance
# REST OF THE CONSTRUCTOR
async def initialize(self) -> None:
"""Initialize the server connection."""
command = (
shutil.which("npx") # <------------------------------- THIS IS THE FIX
if self.config["command"] == "npx"
else self.config["command"]
)
if command is None:
raise ValueError("The command must be a valid string and cannot be None.")
server_params = StdioServerParameters(
command=command,
args=self.config["args"],
env={**os.environ, **self.config["env"]}
if self.config.get("env")
else None,
)
try:
stdio_transport = await self.exit_stack.enter_async_context(
stdio_client(server_params)
)
read, write = stdio_transport
session = await self.exit_stack.enter_async_context(
ClientSession(read, write)
)
await session.initialize()
self.session = session
except Exception as e:
logging.error(f"Error initializing server {self.name}: {e}")
await self.cleanup()
raise
# REST OF SERVER CLASS...
) I'm on windows and this is the only thing that worked for me. Even the absolute path or extracting the absolute directory path from environment variables and joining the command to create the path didn't work. I'm not sure this is windows specific but my instincts are telling me that it is. the full solution on one line looks as follows: command = (shutil.which("npx") if self.config["command"] == "npx" else self.config["command"]) So for your simple functional example that isn't using a class with a config you could just use e.g. async def get_correct_command(config: dict[str, Any]) -> str:
command = (
shutil.which("npx")
if config["command"] == "npx"
else config["command"]
)
return command then config = "everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
server_params = StdioServerParameters(
command=get_correct_command(config), # Correct command returned
args=["-y @modelcontextprotocol/server-everything"], # Optional command line arguments
env=None # Optional environment variables
)``` |
This is fixed on #327, and it should be available on version 1.5.0. |
Describe the bug
I wanted to try running the client sample with the
server-everything
mcp server.Unfortunatly i always have the issue that i get the following error message :
The issues seems to be related that it cannot find
npx
, but i have installed node,npm and npx.When i am running
npx -v
in a standalone console it responds with10.8.0
. Also when debugging theget_default_environment()
contains myPath
variable which contains the path tonode / npx
.Do you have any idea of what could be wrong ? Could somebody verify that this works on other Machines as expected and it's due to my machine ?
The text was updated successfully, but these errors were encountered: