Skip to content

Commit d5600d8

Browse files
authored
Merge pull request #12 from b3nw/add-host-configuration
fix: display correct host in console output
2 parents b85ecb9 + 4a346bd commit d5600d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ app.listen({ port: PORT, host: HOST }, (err, address) => {
9898
process.exit(1);
9999
}
100100
console.log(
101-
`\n\nOutline MCP Server running:\n\tstreamable-http: ${address}/mcp\n\tsse (deprecated): ${address}/sse\n\n`
101+
`\n\nOutline MCP Server running:\n\tstreamable-http: http://${HOST}:${PORT}/mcp\n\tsse (deprecated): http://${HOST}:${PORT}/sse\n\n`
102102
);
103103
console.log('To use this MCP server in stdio mode, run it via `outline-mcp-server-stdio`.');
104104
});

0 commit comments

Comments
 (0)