@tokenlabai/mcp-server 0.6.1 → 0.6.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
@@ -10,7 +10,7 @@ It exposes public catalog tools for agents that need to choose models, inspect s
10
10
 
11
11
  ## Generated Tool Profiles
12
12
 
13
- The checked-in `generated/tools.json` manifest is generated from TokenLab's public OpenAPI document plus the small MCP-only overlay in `contract/mcp-overlay.json`. Version 0.6.1 generates 76 endpoint tools; two composite discovery tools are registered at runtime.
13
+ The checked-in `generated/tools.json` manifest is generated from TokenLab's public OpenAPI document plus the small MCP-only overlay in `contract/mcp-overlay.json`. Version 0.6.2 generates 76 endpoint tools; two composite discovery tools are registered at runtime.
14
14
 
15
15
  | Profile | Endpoint tools | Coverage |
16
16
  | --- | ---: | --- |
@@ -126,7 +126,7 @@ This repository includes `server.json` for the official MCP Registry.
126
126
 
127
127
  Release metadata:
128
128
 
129
- - npm package: `@tokenlabai/mcp-server@0.6.1`
129
+ - npm package: `@tokenlabai/mcp-server@0.6.2`
130
130
  - MCP registry name: `io.github.hedging8563/tokenlab`
131
131
  - `package.json.mcpName`: `io.github.hedging8563/tokenlab`
132
132
 
@@ -7267,11 +7267,21 @@
7267
7267
  },
7268
7268
  "size": {
7269
7269
  "type": "string",
7270
- "description": "Image size. Defaults are model-specific. For gpt-image-2, omit this field or use auto for automatic sizing, or send WIDTHxHEIGHT; custom dimensions must both be multiples of 16, longest edge <= 3840px, long/short ratio <= 3:1, and total pixels between 655,360 and 8,294,400."
7270
+ "default": "1024x1024",
7271
+ "description": "Image size. For gpt-image-2, use auto or WIDTHxHEIGHT; custom dimensions must both be multiples of 16, longest edge <= 3840px, long/short ratio <= 3:1, and total pixels between 655,360 and 8,294,400."
7271
7272
  },
7272
7273
  "quality": {
7273
7274
  "type": "string",
7274
- "description": "Image quality. Defaults and accepted values are model-specific. For gpt-image-2, omit this field or use auto for automatic quality, or send low, medium, or high. Other image families may use provider-specific values."
7275
+ "enum": [
7276
+ "standard",
7277
+ "hd",
7278
+ "auto",
7279
+ "low",
7280
+ "medium",
7281
+ "high"
7282
+ ],
7283
+ "default": "standard",
7284
+ "description": "Image quality. GPT Image models such as gpt-image-2 use auto/low/medium/high. Other image families may use provider-specific values."
7275
7285
  },
7276
7286
  "style": {
7277
7287
  "type": "string",
@@ -5,7 +5,7 @@
5
5
  "id": "tokenlab-mcp-server",
6
6
  "name": "@tokenlabai/mcp-server",
7
7
  "title": "TokenLab MCP Server",
8
- "version": "0.6.1",
8
+ "version": "0.6.2",
9
9
  "registry_name": "io.github.hedging8563/tokenlab",
10
10
  "source_url": "https://github.com/hedging8563/tokenlab-mcp-server",
11
11
  "landing_url": "https://tokenlab.sh/mcp",
@@ -25,8 +25,8 @@
25
25
  "openapi": "3.0.3",
26
26
  "title": "TokenLab AI Gateway",
27
27
  "version": "1.0.0",
28
- "sha256": "1b60d2976d994b4007a17984d9aa4ad4c11d791fb4e8096e1f86144bcee366f1",
29
- "tool_manifest_sha256": "6647f8fbec7a80e4588640d9582a2931ba5fd675b3c01589ae6e833c0fdf6d69"
28
+ "sha256": "45f249430146044e32ab8c51faa72d3c63eedcb760f4769b4b75dd3b85910302",
29
+ "tool_manifest_sha256": "0fbf0a44b1f0da863a9937223e468b1e67a2d1244b4bd4f53c2d8988fca929e3"
30
30
  },
31
31
  "profiles": {
32
32
  "catalog": {
@@ -6,7 +6,7 @@
6
6
  "openapi": "3.0.3",
7
7
  "title": "TokenLab AI Gateway",
8
8
  "version": "1.0.0",
9
- "sha256": "1b60d2976d994b4007a17984d9aa4ad4c11d791fb4e8096e1f86144bcee366f1"
9
+ "sha256": "45f249430146044e32ab8c51faa72d3c63eedcb760f4769b4b75dd3b85910302"
10
10
  },
11
11
  "default_profile": "core",
12
12
  "profiles": [
@@ -2255,11 +2255,21 @@
2255
2255
  },
2256
2256
  "size": {
2257
2257
  "type": "string",
2258
- "description": "Image size. Defaults are model-specific. For gpt-image-2, omit this field or use auto for automatic sizing, or send WIDTHxHEIGHT; custom dimensions must both be multiples of 16, longest edge <= 3840px, long/short ratio <= 3:1, and total pixels between 655,360 and 8,294,400."
2258
+ "default": "1024x1024",
2259
+ "description": "Image size. For gpt-image-2, use auto or WIDTHxHEIGHT; custom dimensions must both be multiples of 16, longest edge <= 3840px, long/short ratio <= 3:1, and total pixels between 655,360 and 8,294,400."
2259
2260
  },
2260
2261
  "quality": {
2261
2262
  "type": "string",
2262
- "description": "Image quality. Defaults and accepted values are model-specific. For gpt-image-2, omit this field or use auto for automatic quality, or send low, medium, or high. Other image families may use provider-specific values."
2263
+ "enum": [
2264
+ "standard",
2265
+ "hd",
2266
+ "auto",
2267
+ "low",
2268
+ "medium",
2269
+ "high"
2270
+ ],
2271
+ "default": "standard",
2272
+ "description": "Image quality. GPT Image models such as gpt-image-2 use auto/low/medium/high. Other image families may use provider-specific values."
2263
2273
  },
2264
2274
  "style": {
2265
2275
  "type": "string",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tokenlabai/mcp-server",
3
- "version": "0.6.1",
3
+ "version": "0.6.2",
4
4
  "description": "OpenAPI-generated TokenLab MCP server with catalog, native AI, multimodal, resource, prompt, and async task support.",
5
5
  "type": "module",
6
6
  "engines": {