From a1283e169e9582fdcd83db1dbfd6443c9eab8017 Mon Sep 17 00:00:00 2001 From: bendtherules Date: Tue, 14 Apr 2026 17:30:43 +0530 Subject: [PATCH] docs(readme): update MCP configuration instructions to use `bunx` instead of `bun` and remove outdated install sections. --- Readme.md | 29 +++-------------------------- 1 file changed, 3 insertions(+), 26 deletions(-) diff --git a/Readme.md b/Readme.md index 5c4226f..d2664c4 100644 --- a/Readme.md +++ b/Readme.md @@ -43,15 +43,15 @@ bun install ## MCP Configuration -Add to your MCP client configuration: +Add to your MCP client configuration using `bunx` (no installation required): **Claude Desktop** (`claude_desktop_config.json`): ```json { "mcpServers": { "ask262": { - "command": "bun", - "args": ["run", "/path/to/ask262/src/mcp-server.ts"] + "command": "bunx", + "args": ["ask262"] } } } @@ -61,29 +61,6 @@ Add to your MCP client configuration: ```json { "servers": { - "ask262": { - "command": "bun", - "args": ["run", "src/mcp-server.ts"] - } - } -} -``` - -**Via global install** (after `bun install -g ask262`): -```json -{ - "mcpServers": { - "ask262": { - "command": "ask262" - } - } -} -``` - -**Via bunx** (no installation required): -```json -{ - "mcpServers": { "ask262": { "command": "bunx", "args": ["ask262"]