Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Add to Claude Code:

[source,bash]
----
claude mcp add boj-server -- node /path/to/boj-server/mcp-bridge/main.js
claude mcp add boj-server -- deno run -A /path/to/boj-server/mcp-bridge/main.js
----

Or clone and configure:
Expand All @@ -28,7 +28,7 @@ Or clone and configure:
git clone https://github.com/hyperpolymath/boj-server
cd boj-server/mcp-bridge && npm install
# Start the BoJ REST API first (port 7700), then:
claude mcp add boj-server -- node mcp-bridge/main.js
claude mcp add boj-server -- deno run -A mcp-bridge/main.js
----

Glama listing: https://glama.ai/mcp/servers/hyperpolymath/boj-server
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Or clone and configure:
git clone https://github.com/hyperpolymath/boj-server
cd boj-server/mcp-bridge && npm install
# Start the BoJ REST API first (port 7700), then:
claude mcp add boj-server -- node mcp-bridge/main.js
claude mcp add boj-server -- deno run -A mcp-bridge/main.js
```

Glama listing: <https://glama.ai/mcp/servers/hyperpolymath/boj-server>
Expand Down
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ <h1>boj-server</h1>

<h2>Install</h2>
<pre><code># Add to Claude Code
claude mcp add boj-server -- node /path/to/boj-server/mcp-bridge/main.js
claude mcp add boj-server -- deno run -A /path/to/boj-server/mcp-bridge/main.js

# Or clone and configure
git clone https://github.com/hyperpolymath/boj-server
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"boj-server": "mcp-bridge/main.js"
},
"scripts": {
"start": "node mcp-bridge/main.js",
"start": "deno run -A mcp-bridge/main.js",
"test": "node --test mcp-bridge/tests/dispatch_test.js"
},
"engines": {
Expand Down
Loading