romdev-mcp 0.1.2 → 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "romdev-mcp",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "MCP server giving coding agents full control of homebrew ROM development across retro platforms (NES, SNES, GB, Genesis, Atari, C64, ...) via WASM libretro cores.",
5
5
  "type": "module",
6
6
  "main": "src/mcp/server.js",
package/src/mcp/server.js CHANGED
@@ -357,9 +357,10 @@ async function main() {
357
357
  const bannerHost = isDefaultLoopback ? "localhost" : host;
358
358
  const httpServer = app.listen(port, bindHosts[0], () => {
359
359
  log.info(`romdev listening on http://${bannerHost}:${port}/mcp`);
360
+ log.info("");
360
361
  log.info(`optional observer: http://${bannerHost}:${port}/livestream`);
361
- log.info(` Claude Code: claude mcp add --transport http romdev http://${bannerHost}:${port}/mcp`);
362
- log.info(" Other agents (opencode, Codex, …): https://github.com/monteslu/romdev#connect");
362
+ log.info("");
363
+ log.info("connect your coding agent: https://github.com/monteslu/romdev#connect");
363
364
  });
364
365
  const extraServers = [];
365
366
  for (const h of bindHosts.slice(1)) {