Skip to content
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

Setting SERVER_PORT doesn't cascade through to launching the client endpoint #256

Open
aaronpowell opened this issue Apr 3, 2025 · 0 comments · May be fixed by #258
Open

Setting SERVER_PORT doesn't cascade through to launching the client endpoint #256

aaronpowell opened this issue Apr 3, 2025 · 0 comments · May be fixed by #258
Labels
bug Something isn't working

Comments

@aaronpowell
Copy link

Describe the bug
According to the docs, if you want to run a custom set of ports for the client/server parts you run this command:

CLIENT_PORT=8080 SERVER_PORT=9000 npx @modelcontextprotocol/inspector node build/index.js

When started you have the following in the logs:

🔍 MCP Inspector is up and running at http://127.0.0.1:8080 🚀

Clicking that link results in the inspector failing to resolve the config from the server because it is still trying to access it via the endpoint 6277, not 9000 as specified (and where it is running). This is because the proxyPort query string value isn't passed to the client app to override the default server endpoint port.

To Reproduce
Steps to reproduce the behavior:

  1. Run CLIENT_PORT=8080 SERVER_PORT=9000 npx @modelcontextprotocol/inspector node build/index.js
  2. Click the link displayed
  3. Attempt to access the server

Expected behavior
The URL provided in the terminal launches with the correct server backend.

Logs
If applicable, add logs to help explain your problem.

Additional context
If you add ?proxyPort=9000 to the address bar when launched it does start working.

@aaronpowell aaronpowell added the bug Something isn't working label Apr 3, 2025
aaronpowell added a commit to aaronpowell/inspector that referenced this issue Apr 3, 2025
This allows you to set the SERVER_PORT or MCP_PROXY_FULL_ADDRESS as an environment variable and the value will be injected into the static app when it's run.

Fixes modelcontextprotocol#256
@aaronpowell aaronpowell linked a pull request Apr 3, 2025 that will close this issue
9 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant