@msalman5230/image-understand-mcp 1.0.3 → 1.0.4
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 +0 -41
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -133,44 +133,3 @@ The smoke script loads `.env.local` for development convenience. The MCP server
|
|
|
133
133
|
|
|
134
134
|
For stdio MCP servers, stdout is reserved for JSON-RPC messages. This server writes diagnostics to stderr only.
|
|
135
135
|
|
|
136
|
-
### Publish for `npx`
|
|
137
|
-
|
|
138
|
-
The npm package is published as `@msalman5230/image-understand-mcp` and exposes a CLI binary named `image-understand-mcp`, so users do not need to point their MCP client at `dist/index.js`.
|
|
139
|
-
|
|
140
|
-
Before publishing:
|
|
141
|
-
|
|
142
|
-
```bash
|
|
143
|
-
npm run check
|
|
144
|
-
npm pack --dry-run
|
|
145
|
-
```
|
|
146
|
-
|
|
147
|
-
Publish:
|
|
148
|
-
|
|
149
|
-
```bash
|
|
150
|
-
npm login
|
|
151
|
-
npm publish --access public
|
|
152
|
-
```
|
|
153
|
-
|
|
154
|
-
Scoped npm packages must use `--access public` on publish unless you want a private/restricted package.
|
|
155
|
-
|
|
156
|
-
After that, MCP clients can launch the server with:
|
|
157
|
-
|
|
158
|
-
```bash
|
|
159
|
-
npx -y @msalman5230/image-understand-mcp
|
|
160
|
-
```
|
|
161
|
-
|
|
162
|
-
For unreleased local testing, keep using `node dist/index.js`, or run `npm link` from this repo and use the linked `image-understand-mcp` binary.
|
|
163
|
-
|
|
164
|
-
### Release Versions
|
|
165
|
-
|
|
166
|
-
The first public release is `1.0.0`.
|
|
167
|
-
|
|
168
|
-
For future releases, use npm's semver bump command from the repo root:
|
|
169
|
-
|
|
170
|
-
```bash
|
|
171
|
-
npm version patch
|
|
172
|
-
git push origin main --follow-tags
|
|
173
|
-
```
|
|
174
|
-
|
|
175
|
-
Use `patch` for fixes, `minor` for backward-compatible features, and `major` for breaking changes.
|
|
176
|
-
|
package/package.json
CHANGED