mcp-sight 1.0.0 → 1.0.2

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 CHANGED
@@ -11,7 +11,7 @@ Add to `~/.claude/settings.json` or `<project>/.claude/settings.json`:
11
11
  "mcpServers": {
12
12
  "mcp-sight": {
13
13
  "command": "bunx",
14
- "args": ["mcp-sight"],
14
+ "args": ["--bun", "mcp-sight"],
15
15
  "env": {
16
16
  "VISION_API_KEY": "sk-your-api-key",
17
17
  "VISION_BASE_URL": "https://api.openai.com/v1",
@@ -30,7 +30,7 @@ claude mcp add mcp-sight \
30
30
  --env VISION_API_KEY=sk-your-api-key \
31
31
  --env VISION_BASE_URL=https://api.openai.com/v1 \
32
32
  --env VISION_MODEL=gpt-4o \
33
- -- bunx mcp-sight
33
+ -- bunx --bun mcp-sight
34
34
  ```
35
35
 
36
36
  ## Environment Variables
package/bin/mcp-vision.js CHANGED
@@ -1,3 +1,2 @@
1
- #!/usr/bin/env node
2
- // npm-compatible bin entry — bun handles TS import when run via bun
1
+ #!/usr/bin/env bun
3
2
  import("../src/index.ts");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-sight",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "MCP server that gives Claude Code sight — describe images using a vision-capable LLM",
5
5
  "type": "module",
6
6
  "main": "./src/index.ts",