Fix: add /mcp path to local test snippet in mcp-server-hello-world README#223
Closed
noramxiao wants to merge 1 commit into
Closed
Fix: add /mcp path to local test snippet in mcp-server-hello-world README#223noramxiao wants to merge 1 commit into
noramxiao wants to merge 1 commit into
Conversation
…ADME The DatabricksMCPClient list-tools snippet pointed at http://localhost:8000 without the /mcp path, so connectivity checks against the locally running server failed. The MCP protocol routes are mounted under /mcp (as already documented in the "MCP Endpoints" section). Fixes #122 Co-authored-by: Isaac
Contributor
Author
|
addressed in #209 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
The
DatabricksMCPClientlist-tools snippet inmcp-server-hello-world/README.md("End-to-end test your locally-running MCP server") usedserver_url="http://localhost:8000"without the/mcppath. The MCP protocol routes are mounted under/mcp(as the "MCP Endpoints" section of the same README already states), so the connectivity check fails as written.Change
http://localhost:8000->http://localhost:8000/mcpin the test snippet.Fixes #122