File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed
Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ chmod +x install.sh
3333sudo ./install.sh
3434```
3535
36- MCP server will be available at: http://coderunner.local:8222/sse
36+ MCP server will be available at: http://coderunner.local:8222/mcp
3737
3838** Install required packages** (use virtualenv and note the python path):
3939``` bash
@@ -118,7 +118,7 @@ pip install -r examples/requirements.txt
118118 "selectedAuthType" : " oauth-personal" ,
119119 "mcpServers" : {
120120 "coderunner" : {
121- "url " : " http://coderunner.local:8222/sse "
121+ "httpUrl " : " http://coderunner.local:8222/mcp "
122122 }
123123 }
124124}
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ def resolve_with_system_dns(hostname):
1313
1414hostname = "coderunner.local"
1515address = resolve_with_system_dns (hostname )
16- proxy = FastMCP .as_proxy (f"http://{ address } :8222/sse " , name = "SSE to Stdio Proxy" )
16+ proxy = FastMCP .as_proxy (f"http://{ address } :8222/mcp " , name = "SSE to Stdio Proxy" )
1717# Run the proxy with stdio transport for local access
1818if __name__ == "__main__" :
19- proxy .run ()
19+ proxy .run ()
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ async def main():
4040 async with MCPServerSse (
4141 name = "SSE Python Server" ,
4242 params = {
43- "url" : f"http://{ address } :8222/sse " ,
43+ "url" : f"http://{ address } :8222/mcp " ,
4444 "sse_read_timeout" : 60 ,
4545 "timeout" : 60 ,
4646 },
Original file line number Diff line number Diff line change @@ -50,4 +50,4 @@ container system start
5050echo " Running: container run --name coderunner --detach --rm --cpus 8 --memory 4g instavm/coderunner"
5151container run --name coderunner --detach --rm --cpus 8 --memory 4g instavm/coderunner
5252
53- echo " ✅ Setup complete. MCP server is available at http://coderunner.local:8222/sse "
53+ echo " ✅ Setup complete. MCP server is available at http://coderunner.local:8222/mcp "
You can’t perform that action at this time.
0 commit comments