Skip to content

Commit 16984e7

Browse files
committed
replace /sse with /mcp in every setting
1 parent b5c61de commit 16984e7

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ chmod +x install.sh
3333
sudo ./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
}

examples/claude_desktop/mcpproxy.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def resolve_with_system_dns(hostname):
1313

1414
hostname = "coderunner.local"
1515
address = 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
1818
if __name__ == "__main__":
19-
proxy.run()
19+
proxy.run()

examples/openai_agents/openai_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
},

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,4 @@ container system start
5050
echo "Running: container run --name coderunner --detach --rm --cpus 8 --memory 4g instavm/coderunner"
5151
container 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"

0 commit comments

Comments
 (0)