@stabgan/openrouter-mcp-multimodal 5.0.0 → 5.0.1

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
@@ -140,7 +140,7 @@ npx -y @stabgan/openrouter-mcp-multimodal
140
140
  }
141
141
  ```
142
142
 
143
- Pin a release: `"args": ["-y", "@stabgan/openrouter-mcp-multimodal@5.0.0"]`
143
+ Pin a release: `"args": ["-y", "@stabgan/openrouter-mcp-multimodal@5.0.1"]`
144
144
 
145
145
  </details>
146
146
 
@@ -152,7 +152,7 @@ Install [uv](https://docs.astral.sh/uv/getting-started/installation/) (includes
152
152
  ```bash
153
153
  export OPENROUTER_API_KEY=sk-or-v1-...
154
154
  uvx mcp-server-openrouter-multimodal
155
- # pin npm version: OPENROUTER_MCP_NPM_VERSION=5.0.0 uvx mcp-server-openrouter-multimodal
155
+ # pin npm version: OPENROUTER_MCP_NPM_VERSION=5.0.1 uvx mcp-server-openrouter-multimodal
156
156
  ```
157
157
 
158
158
  ```json
@@ -171,7 +171,7 @@ uvx mcp-server-openrouter-multimodal
171
171
 
172
172
  **pipx equivalent:** `pipx run mcp-server-openrouter-multimodal`
173
173
 
174
- Optional: `OPENROUTER_MCP_NPM_VERSION=5.0.0` pins the underlying npm package.
174
+ Optional: `OPENROUTER_MCP_NPM_VERSION=5.0.1` pins the underlying npm package.
175
175
 
176
176
  </details>
177
177
 
@@ -252,7 +252,7 @@ Use `-i` (interactive stdio). Avoid `-t` (TTY corrupts MCP framing on some hosts
252
252
 
253
253
  ```bash
254
254
  docker run --rm -i -e OPENROUTER_API_KEY=sk-or-v1-... \
255
- ghcr.io/stabgan/openrouter-mcp-multimodal:5.0.0
255
+ ghcr.io/stabgan/openrouter-mcp-multimodal:5.0.1
256
256
  ```
257
257
 
258
258
  ```json
@@ -266,7 +266,7 @@ docker run --rm -i -e OPENROUTER_API_KEY=sk-or-v1-... \
266
266
  "-i",
267
267
  "-e",
268
268
  "OPENROUTER_API_KEY=sk-or-v1-...",
269
- "ghcr.io/stabgan/openrouter-mcp-multimodal:5.0.0"
269
+ "ghcr.io/stabgan/openrouter-mcp-multimodal:5.0.1"
270
270
  ]
271
271
  }
272
272
  }
package/dist/version.d.ts CHANGED
@@ -1,3 +1,3 @@
1
- export declare const SERVER_VERSION = "5.0.0";
1
+ export declare const SERVER_VERSION = "5.0.1";
2
2
  /** Advertised MCP protocol version — derived from the installed SDK. */
3
3
  export declare const MCP_PROTOCOL_VERSION = "2025-11-25";
package/dist/version.js CHANGED
@@ -1,4 +1,4 @@
1
1
  import { LATEST_PROTOCOL_VERSION } from '@modelcontextprotocol/sdk/types.js';
2
- export const SERVER_VERSION = '5.0.0';
2
+ export const SERVER_VERSION = '5.0.1';
3
3
  /** Advertised MCP protocol version — derived from the installed SDK. */
4
4
  export const MCP_PROTOCOL_VERSION = LATEST_PROTOCOL_VERSION;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stabgan/openrouter-mcp-multimodal",
3
- "version": "5.0.0",
3
+ "version": "5.0.1",
4
4
  "mcpName": "io.github.stabgan/openrouter-multimodal",
5
5
  "description": "MCP server for OpenRouter — chat with 300+ LLMs, analyze images/audio/video, generate images (dedicated API), TTS/STT, video generation (Veo 3.1 / Seedance / Wan), async completions, response caching",
6
6
  "type": "module",