romdev-mcp 0.1.1 → 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/README.md +2 -0
- package/package.json +1 -1
- package/src/mcp/server.js +4 -3
package/README.md
CHANGED
|
@@ -36,6 +36,8 @@ npx romdev-mcp
|
|
|
36
36
|
claude mcp add --transport http romdev http://127.0.0.1:7331/mcp
|
|
37
37
|
```
|
|
38
38
|
|
|
39
|
+
It's a standard **streamable-HTTP** MCP server at `http://127.0.0.1:7331/mcp`. For opencode, Codex CLI, and other clients, see **[Connect](https://github.com/monteslu/romdev#connect)** in the repository README. An optional human observer (live tool-call view) is at `/livestream`.
|
|
40
|
+
|
|
39
41
|
Agents: the server delivers [`AGENTS.md`](./AGENTS.md) as connection-time instructions — the workflow guide for the full tool surface. Or just connect your agent and call `listCategories` / `describeTool` to explore the tools live.
|
|
40
42
|
|
|
41
43
|
## License
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "romdev-mcp",
|
|
3
|
-
"version": "0.1.
|
|
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(
|
|
361
|
-
log.info(
|
|
362
|
-
log.info(
|
|
360
|
+
log.info("");
|
|
361
|
+
log.info(`optional observer: http://${bannerHost}:${port}/livestream`);
|
|
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)) {
|