@tokenlabai/mcp-server 0.4.1 → 0.4.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.
Files changed (2) hide show
  1. package/README.md +4 -3
  2. package/package.json +5 -2
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.4.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.4.2 generates 76 endpoint tools; two composite discovery tools are registered at runtime.
14
14
 
15
15
  | Profile | Endpoint tools | Coverage |
16
16
  | --- | ---: | --- |
@@ -115,20 +115,21 @@ This repository includes `server.json` for the official MCP Registry.
115
115
 
116
116
  Release metadata:
117
117
 
118
- - npm package: `@tokenlabai/mcp-server@0.4.1`
118
+ - npm package: `@tokenlabai/mcp-server@0.4.2`
119
119
  - MCP registry name: `io.github.hedging8563/tokenlab`
120
120
  - `package.json.mcpName`: `io.github.hedging8563/tokenlab`
121
121
 
122
122
  For a new release:
123
123
 
124
124
  1. Bump the matching versions in `package.json`, `package-lock.json`, and `server.json`.
125
- 2. Push a matching tag such as `v0.4.1`.
125
+ 2. Push a matching tag such as `v0.4.2`.
126
126
  3. The publish workflow tests and publishes npm through trusted publishing, then publishes the MCP Registry entry through GitHub Actions OIDC.
127
127
 
128
128
  The same workflow can be run manually from `main` to republish only the current MCP Registry metadata. No npm or MCP Registry token is stored in GitHub.
129
129
 
130
130
  ## Links
131
131
 
132
+ - Website: https://tokenlab.sh
132
133
  - Docs: https://docs.tokenlab.sh
133
134
  - OpenAPI: https://docs.tokenlab.sh/openapi.json
134
135
  - Model catalog: https://api.tokenlab.sh/v1/models
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tokenlabai/mcp-server",
3
- "version": "0.4.1",
3
+ "version": "0.4.2",
4
4
  "description": "MCP server for TokenLab model discovery, native LLM endpoints, multimodal generation, async tasks, embeddings, rerank, and translation.",
5
5
  "type": "module",
6
6
  "engines": {
@@ -47,5 +47,8 @@
47
47
  "type": "git",
48
48
  "url": "git+https://github.com/hedging8563/tokenlab-mcp-server.git"
49
49
  },
50
- "homepage": "https://docs.tokenlab.sh"
50
+ "homepage": "https://tokenlab.sh",
51
+ "bugs": {
52
+ "url": "https://github.com/hedging8563/tokenlab-mcp-server/issues"
53
+ }
51
54
  }